You are not logged in.

#1 2019-12-06 15:02:50

atomikegg
Member
Registered: 2019-08-14
Posts: 99

makepkg -j gives 'invalid option'

pure arch, updated

How to set cores for makepkg?

i'm getting

$ makepkg -j 2
makepkg: invalid option -- 'j'

Offline

#2 2019-12-06 15:05:24

2ManyDogs
Forum Fellow
Registered: 2012-01-15
Posts: 4,645

Re: makepkg -j gives 'invalid option'

Offline

#3 2019-12-06 15:05:54

Zod
Member
From: Hoosiertucky
Registered: 2019-03-10
Posts: 629

Re: makepkg -j gives 'invalid option'

Offline

#4 2019-12-06 16:14:40

atomikegg
Member
Registered: 2019-08-14
Posts: 99

Re: makepkg -j gives 'invalid option'

the wiki gives:

MAKEFLAGS="-j$(nproc)"

but during compile, i get:

make: the '-j' option requires a positive integer argument

however, the following works in makepkg.conf

MAKEFLAGS="-j2"

Is that an error in the wiki?

also, i assumed that if it works in makepkg.conf, then it will work on the command-line. Curious that it works in makepkg.conf, but not on command line.

thx

Offline

#5 2019-12-06 16:21:18

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 11,846
Website

Re: makepkg -j gives 'invalid option'

What does

$ nproc

return on your system?


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#6 2019-12-06 18:56:37

2ManyDogs
Forum Fellow
Registered: 2012-01-15
Posts: 4,645

Re: makepkg -j gives 'invalid option'

atomikegg wrote:

also, i assumed that if it works in makepkg.conf, then it will work on the command-line. Curious that it works in makepkg.conf, but not on command line.

It's not curious at all. It doesn't work on the command line because -j is not an option for the 'makepkg' command (see the makepkg man page). It's an option for the 'make' command, and makepkg sources makepkg.conf so 'make' will use options that are properly configured there. There are similar options in makepkg.conf that specify options for the compiler and linker; these are also not command-line options for makepkg (see the makepkg.conf man page).

Offline

#7 2019-12-06 20:35:26

atomikegg
Member
Registered: 2019-08-14
Posts: 99

Re: makepkg -j gives 'invalid option'

$ nproc
2

@2ManyDogs, thx for explanation. Curious cuz i've seen `-j` mentioned as a command-line argument for makepkg. But it wasn't on the arch wiki, so nevermind smile

thx

Offline

#8 2019-12-07 03:40:30

loqs
Member
Registered: 2014-03-06
Posts: 17,327

Re: makepkg -j gives 'invalid option'

If you still encountering the issue when using nproc in MAKEFLAGS in makepkg.conf please post the contents of /etc/makepkg.conf
and edit an affected PKGBUILD so the build function starts:

build() {
echo $MAKEFLAGS

Offline

#9 2019-12-07 09:24:39

atomikegg
Member
Registered: 2019-08-14
Posts: 99

Re: makepkg -j gives 'invalid option'

i think i found my error. The font of this webpage makes it appear as if there's a space after the dollar-sign

MAKEFLAGS="-j$(nproc)"

i tried again without spaces, and i don't see the error. 

below is the contents of my corrected makepkg.conf, and the output of the makepkg command:

#!/hint/bash
#
# /etc/makepkg.conf
#

#########################################################################
# SOURCE ACQUISITION
#########################################################################
#
#-- The download utilities that makepkg should use to acquire sources
#  Format: 'protocol::agent'
DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u'
          'ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
          'http::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
          'https::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
          'rsync::/usr/bin/rsync --no-motd -z %u %o'
          'scp::/usr/bin/scp -C %u %o')

# Other common tools:
# /usr/bin/snarf
# /usr/bin/lftpget -c
# /usr/bin/wget

#-- The package required by makepkg to download VCS sources
#  Format: 'protocol::package'
VCSCLIENTS=('bzr::bzr'
            'git::git'
            'hg::mercurial'
            'svn::subversion')

#########################################################################
# ARCHITECTURE, COMPILE FLAGS
#########################################################################
#
CARCH="x86_64"
CHOST="x86_64-pc-linux-gnu"

#-- Compiler and Linker Flags
CPPFLAGS="-D_FORTIFY_SOURCE=2"
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
#-- Make Flags: change this for DistCC/SMP systems
MAKEFLAGS="-j$(nproc)" 
#-- Debugging flags
DEBUG_CFLAGS="-g -fvar-tracking-assignments"
DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"

#########################################################################
# BUILD ENVIRONMENT
#########################################################################
#
# Defaults: BUILDENV=(!distcc !color !ccache check !sign)
#  A negated environment option will do the opposite of the comments below.
#
#-- distcc:   Use the Distributed C/C++/ObjC compiler
#-- color:    Colorize output messages
#-- ccache:   Use ccache to cache compilation
#-- check:    Run the check() function if present in the PKGBUILD
#-- sign:     Generate PGP signature file
#
BUILDENV=(!distcc color !ccache check !sign)
#
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
#-- specify a space-delimited list of hosts running in the DistCC cluster.
#DISTCC_HOSTS=""
#
#-- Specify a directory for package building.
#BUILDDIR=/tmp/makepkg

#########################################################################
# GLOBAL PACKAGE OPTIONS
#   These are default values for the options=() settings
#########################################################################
#
# Default: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug)
#  A negated option will do the opposite of the comments below.
#
#-- strip:      Strip symbols from binaries/libraries
#-- docs:       Save doc directories specified by DOC_DIRS
#-- libtool:    Leave libtool (.la) files in packages
#-- staticlibs: Leave static library (.a) files in packages
#-- emptydirs:  Leave empty directories in packages
#-- zipman:     Compress manual (man and info) pages in MAN_DIRS with gzip
#-- purge:      Remove files specified by PURGE_TARGETS
#-- debug:      Add debugging flags as specified in DEBUG_* variables
#
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug)

#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
INTEGRITY_CHECK=(md5)
#-- Options to be used when stripping binaries. See `man strip' for details.
STRIP_BINARIES="--strip-all"
#-- Options to be used when stripping shared libraries. See `man strip' for details.
STRIP_SHARED="--strip-unneeded"
#-- Options to be used when stripping static libraries. See `man strip' for details.
STRIP_STATIC="--strip-debug"
#-- Manual (man and info) directories to compress (if zipman is specified)
MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
#-- Doc directories to remove (if !docs is specified)
DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
#-- Files to be removed from all packages (if purge is specified)
PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
#-- Directory to store source code in for debug packages
DBGSRCDIR="/usr/src/debug"

#########################################################################
# PACKAGE OUTPUT
#########################################################################
#
# Default: put built package and cached source in build directory
#
#-- Destination: specify a fixed directory where all packages will be placed
#PKGDEST=/home/packages
#-- Source cache: specify a fixed directory where source files will be cached
#SRCDEST=/home/sources
#-- Source packages: specify a fixed directory where all src packages will be placed
#SRCPKGDEST=/home/srcpackages
#-- Log files: specify a fixed directory where all log files will be placed
#LOGDEST=/home/makepkglogs
#-- Packager: name/email of the person or organization building packages
#PACKAGER="John Doe <john@doe.com>"
#-- Specify a key to use for package signing
#GPGKEY=""

#########################################################################
# COMPRESSION DEFAULTS
#########################################################################
#
COMPRESSGZ=(gzip -c -f -n)
COMPRESSBZ2=(bzip2 -c -f)
COMPRESSXZ=(xz -c -z -)
COMPRESSZST=(zstd -c -z -q -)
COMPRESSLRZ=(lrzip -q)
COMPRESSLZO=(lzop -q)
COMPRESSZ=(compress -c -f)
COMPRESSLZ4=(lz4 -q)
COMPRESSLZ=(lzip -c -f)

#########################################################################
# EXTENSION DEFAULTS
#########################################################################
#
PKGEXT='.pkg.tar.xz'
SRCEXT='.src.tar.gz'
[johny@myegg webkitgtk]$ makepkg -s
==> WARNING: Cannot find the sudo binary. Will use su to acquire root privileges.
==> Making package: webkitgtk 3:2.4.11-18 (Sat Dec  7 01:08:16 2019)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Installing missing dependencies...
Password: 
resolving dependencies...
looking for conflicting packages...

Packages (12) python-appdirs-1.4.3-5  python-beaker-1.11.0-3  python-mako-1.0.14-3  python-markdown-3.1.1-4  python-markupsafe-1.1.1-3
              python-ordered-set-3.1.1-1  python-packaging-19.2-5  python-pyparsing-2.4.5-1  python-setuptools-1:41.6.0-1  python-six-1.13.0-2
              gobject-introspection-1.62.0-3  gperf-3.1-2

Total Download Size:    2.04 MiB
Total Installed Size:  17.34 MiB

:: Proceed with installation? [Y/n] 
:: Retrieving packages...
 python-markupsafe-1.1.1-3-x86_64                                   22.4 KiB   224 KiB/s 00:00 [########################################################] 100%
 python-beaker-1.11.0-3-any                                         86.2 KiB   663 KiB/s 00:00 [########################################################] 100%
 python-appdirs-1.4.3-5-any                                         14.2 KiB  0.00   B/s 00:00 [########################################################] 100%
 python-pyparsing-2.4.5-1-any                                      106.0 KiB   741 KiB/s 00:00 [########################################################] 100%
 python-six-1.13.0-2-any                                            20.9 KiB  0.00   B/s 00:00 [########################################################] 100%
 python-packaging-19.2-5-any                                        38.9 KiB  2.72 MiB/s 00:00 [########################################################] 100%
 python-ordered-set-3.1.1-1-any                                     12.5 KiB  0.00   B/s 00:00 [########################################################] 100%
 python-setuptools-1:41.6.0-1-any                                  302.1 KiB  1439 KiB/s 00:00 [########################################################] 100%
 python-mako-1.0.14-3-any                                          122.0 KiB  1525 KiB/s 00:00 [########################################################] 100%
 gobject-introspection-1.62.0-3-x86_64                            1151.1 KiB  1283 KiB/s 00:01 [########################################################] 100%
 gperf-3.1-2-x86_64                                                 96.3 KiB  1690 KiB/s 00:00 [########################################################] 100%
 python-markdown-3.1.1-4-any                                       111.4 KiB  1393 KiB/s 00:00 [########################################################] 100%
(12/12) checking keys in keyring                                                               [########################################################] 100%
(12/12) checking package integrity                                                             [########################################################] 100%
(12/12) loading package files                                                                  [########################################################] 100%
(12/12) checking for file conflicts                                                            [########################################################] 100%
(12/12) checking available disk space                                                          [########################################################] 100%
:: Processing package changes...
( 1/12) installing python-markupsafe                                                           [########################################################] 100%
( 2/12) installing python-beaker                                                               [########################################################] 100%
( 3/12) installing python-appdirs                                                              [########################################################] 100%
( 4/12) installing python-pyparsing                                                            [########################################################] 100%
( 5/12) installing python-six                                                                  [########################################################] 100%
( 6/12) installing python-packaging                                                            [########################################################] 100%
( 7/12) installing python-ordered-set                                                          [########################################################] 100%
( 8/12) installing python-setuptools                                                           [########################################################] 100%
( 9/12) installing python-mako                                                                 [########################################################] 100%
(10/12) installing python-markdown                                                             [########################################################] 100%
(11/12) installing gobject-introspection                                                       [########################################################] 100%
(12/12) installing gperf                                                                       [########################################################] 100%
:: Running post-transaction hooks...
(1/2) Arming ConditionNeedsUpdate...
(2/2) Updating the info directory file...
==> Retrieving sources...
  -> Downloading webkitgtk-2.4.11.tar.xz...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 9637k  100 9637k    0     0   892k      0  0:00:10  0:00:10 --:--:-- 1270k
  -> Found webkitgtk-2.4.9-abs.patch
  -> Found enchant-2.x.patch
  -> Found icu59.patch
  -> Found pkgconfig-enchant-2.patch
==> Validating source files with sha256sums...
    webkitgtk-2.4.11.tar.xz ... Passed
    webkitgtk-2.4.9-abs.patch ... Passed
    enchant-2.x.patch ... Passed
    icu59.patch ... Passed
    pkgconfig-enchant-2.patch ... Passed
==> Extracting sources...
  -> Extracting webkitgtk-2.4.11.tar.xz with bsdtar
==> Starting prepare()...
patching file Source/WebCore/platform/gtk/GtkClickCounter.cpp
patching file Source/WebCore/platform/gtk/LocalizedStringsGtk.cpp
patching file Source/WebCore/platform/text/enchant/TextCheckerEnchant.cpp
patching file Source/JavaScriptCore/API/JSStringRef.h
patching file Source/WebKit2/Shared/API/c/WKString.h
patching file Source/autotools/FindDependencies.m4
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force 
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'Source/autotools'.
libtoolize: copying file 'Source/autotools/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'Source/autotools'.
libtoolize: copying file 'Source/autotools/libtool.m4'
libtoolize: copying file 'Source/autotools/ltoptions.m4'
libtoolize: copying file 'Source/autotools/ltsugar.m4'
libtoolize: copying file 'Source/autotools/ltversion.m4'
libtoolize: copying file 'Source/autotools/lt~obsolete.m4'
libtoolize: Remember to add 'LT_INIT' to configure.ac.
libtoolize: Consider adding '-I Source/autotools' to ACLOCAL_AMFLAGS in Makefile.am.
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
Source/autotools/CheckSystemAndBasicDependencies.m4:81: installing 'Source/autotools/compile'
configure.ac:35: installing 'Source/autotools/missing'
GNUmakefile.am: installing 'Source/autotools/depcomp'
autoreconf: Leaving directory `.'
==> Starting build()...
-j2
configure: WARNING: unrecognized options: --disable-gtk-doc
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for perl... /usr/bin/perl
checking for python... /home/johny/webkitgtk/src/path/python
checking for ruby... /usr/bin/ruby
checking for bison... /usr/bin/bison
checking for mv... /usr/bin/mv
checking for grep... /usr/bin/grep
checking for gperf... /usr/bin/gperf
checking for flex... /usr/bin/flex
checking for gawk... gawk
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for bash... /usr/bin/bash
checking if dolt supports this host... yes, replacing libtool
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... dlltool
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether to build WebKit1... yes
checking whether to build WebKit2... no
checking whether to do a debug build... no
checking whether to enable developer mode... no
checking whether to enable optimized builds... yes
checking the GTK+ version to use... 3.0
checking whether to enable the x11 target... yes
checking whether to enable the wayland target... auto
checking whether to enable the win32 target... no
checking whether to enable the quartz target... no
checking whether to enable the directfb target... no
checking whether to build for the Win32 target... no
checking whether to enable spellcheck support... yes
checking whether to enable credential storage... yes
checking whether to enable Gamepad support... no
checking whether to enable HTML5 video support... yes
checking whether to enable geolocation support... yes
checking whether to enable SVG support... yes
checking whether to enable support for SVG fonts... yes
checking whether to enable Web Audio support... yes
checking whether to enable Battery Status API support... no
checking whether to enable code coverage support... no
checking whether to enable optimized memory allocator... yes
checking whether to enable debug symbols... no
checking whether to enable WebGL support... auto
checking whether to enable accelerated compositing support... auto
checking whether to enable JIT compilation... auto
checking whether to enable FTL JIT... no
checking whether to enable opcode stats... no
checking whether to enable GObject introspection support... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for jpeg_destroy_decompress in -ljpeg... yes
checking for jpeglib... yes
checking for libpng... yes
checking webp/decode.h usability... yes
checking webp/decode.h presence... yes
checking for webp/decode.h... yes
checking for pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.16... yes
checking for GLIB... yes
checking for GLIB - version >= 2.36.0... yes (version 2.62.3)
checking for pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.16... yes
checking for icu-config... /usr/bin/icu-config
checking for ZLIB... yes
checking for LIBXML... yes
checking for PANGO... yes
checking for ENCHANT... yes
checking for CAIRO... yes
checking for GTK... yes
checking for GTK_X11... yes
checking for XT... yes
checking for XRENDER... yes
checking for GTK_WAYLAND... yes
checking GL/glx.h usability... yes
checking GL/glx.h presence... yes
checking for GL/glx.h... yes
checking whether to enable GLX support... yes
checking EGL/egl.h usability... yes
checking EGL/egl.h presence... yes
checking for EGL/egl.h... yes
checking whether to enable EGL support... yes
checking GLES2/gl2.h usability... yes
checking GLES2/gl2.h presence... yes
checking for GLES2/gl2.h... yes
checking whether to use OpenGL ES 2 support... no
checking GL/gl.h usability... yes
checking GL/gl.h presence... yes
checking for GL/gl.h... yes
checking for XCOMPOSITE... yes
checking for XDAMAGE... yes
checking whether to enable CSS Filters... yes
checking for INTROSPECTION... yes
checking for LIBSOUP... yes
checking for LIBSECRET... yes
checking for FREETYPE... yes
checking for HARFBUZZ_ICU... yes
checking for SQLITE3... yes
checking for LIBXSLT... yes
checking for GEOCLUE2... yes
checking for GSTREAMER... yes
checking for dlopen... no
checking for dlopen in -ldl... yes
checking for CAIRO_GL... no
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for pthread_rwlock_init in -lpthread... yes
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking whether make sets $(MAKE)... yes
checking whether make supports the include directive... yes (GNU style)
checking whether make supports nested variables... yes
checking whether UID '1000' is supported by ustar format... yes
checking whether GID '1000' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking dependency style of gcc... gcc3
checking dependency style of g++... gcc3
checking whether to enable maintainer-specific portions of Makefiles... yes
checking whether make supports nested variables... (cached) yes
checking for gawk... (cached) gawk
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating GNUmakefile
config.status: creating Source/WebCore/platform/gtk/po/POTFILES
config.status: creating Source/JavaScriptCore/javascriptcoregtk-3.0.pc
config.status: creating JavaScriptCore-3.0.gir
config.status: creating Source/WebKit/gtk/webkit/webkitversion.h
config.status: creating Source/WebKit/gtk/webkitgtk-3.0.pc
config.status: creating autotoolsconfig.h
config.status: executing libtool commands
config.status: executing depfiles commands
configure: WARNING: unrecognized options: --disable-gtk-doc

WebKit was configured with the following options:

Build configuration:
 Enable debugging (slow)                                  : no
 Compile with debug symbols (slow)                        : no
 Enable GCC build optimization                            : yes
 Code coverage support                                    : no
 Optimized memory allocator                               : yes
 Accelerated rendering backend                            : OpenGL (gl, egl, glx)
 Geolocation backend                                      : Geoclue 2

Features:
=======
 WebKit1 support                                          : yes
 WebKit2 support                                          : no
 Accelerated Compositing                                  : yes
 Accelerated 2D canvas                                    : no
 Battery API support                                      : no
 Gamepad support                                          : no
 Geolocation support                                      : yes
 HTML5 video element support                              : yes
 JIT compilation                                          : auto
 FTL JIT compilation                                      : no
 Opcode stats                                             : no
 SVG fonts support                                        : yes
 SVG support                                              : yes
 Spellcheck support                                       : yes
 Credential storage support                               : yes
 Web Audio support                                        : yes
 WebGL                                                    : yes


GTK+ configuration:
 GTK+ version                                             : 3.0
 GDK targets                                              : x11, wayland
 Introspection support                                    : yes
 Generate documentation                                   : no

  GEN      DerivedSources/WebCore/InternalSettingsGenerated.idl
  GEN      DerivedSources/webkitdom/WebKitDOMCustom.h
  GEN      DerivedSources/webkitdom/WebKitDOMDeprecated.h
  GEN      DerivedSources/webkitdom/WebKitDOMEventTarget.h
  GEN      DerivedSources/webkitdom/WebKitDOMObject.h
  GEN      DerivedSources/webkitdom/webkitdom.h
  GEN      DerivedSources/webkitdom/webkitdomdefines.h
  GEN      DerivedSources/webkitdom/WebKitDOMEventTargetPrivate.h
  GEN      gtkdoc-webkitdom.cfg
  GEN      DerivedSources/WebInspectorUI/GResourceBundle.xml
  GEN      DerivedSources/webkit/webkitenumtypes.cpp
  GEN      stamp-webkitenumtypes.h
  GEN      stamp-webkitmarshal.cpp
  GEN      stamp-webkitmarshal.h
INFO: Reading /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebKit/gtk/webkitmarshal.list...
INFO: Reading /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebKit/gtk/webkitmarshal.list...
  GEN      gtkdoc-webkitgtk.cfg
^[[F  GEN      stamp-webkit2-forwarding-headers
  GEN      DerivedSources/WebKit2/webkit2extension/include/webkit2
  GEN      DerivedSources/WebKit2/webkit2gtk/include/webkit2
  GEN      stamp-mini-browser-marshal.h
INFO: Reading /home/johny/webkitgtk/src/webkitgtk-2.4.11/Tools/MiniBrowser/gtk/browser-marshal.list...
  GEN      stamp-mini-browser-marshal.c
INFO: Reading /home/johny/webkitgtk/src/webkitgtk-2.4.11/Tools/MiniBrowser/gtk/browser-marshal.list...
  GEN      DerivedSources/JavaScriptCore/InjectedScriptSource.h
[Creating forwarding header for JavaScriptCore/API/JSContextRef.h]
[Creating forwarding header for JavaScriptCore/API/JSValueRef.h]
[Creating forwarding header for JavaScriptCore/API/OpaqueJSString.h]
[Creating forwarding header for JavaScriptCore/API/JavaScript.h]
[Creating forwarding header for JavaScriptCore/API/APICast.h]
[Creating forwarding header for JavaScriptCore/API/JSStringRef.h]
[Creating forwarding header for JavaScriptCore/API/JSBase.h]
[Creating forwarding header for JavaScriptCore/runtime/MemoryStatistics.h]
[Creating forwarding header for JavaScriptCore/runtime/JSCJSValueInlines.h]
[Creating forwarding header for JavaScriptCore/runtime/FunctionPrototype.h]
[Creating forwarding header for JavaScriptCore/runtime/JSCellInlines.h]
[Creating forwarding header for JavaScriptCore/runtime/Error.h]
[Creating forwarding header for JavaScriptCore/runtime/StructureInlines.h]
[Creating forwarding header for JavaScriptCore/runtime/JSObject.h]
[Creating forwarding header for JavaScriptCore/runtime/InitializeThreading.h]
[Creating forwarding header for JavaScriptCore/runtime/JSGlobalObject.h]
[Creating forwarding header for JavaScriptCore/runtime/JSLock.h]
[Creating forwarding header for JavaScriptCore/runtime/Completion.h]
[Creating forwarding header for JavaScriptCore/runtime/ObjectPrototype.h]
[Creating forwarding header for JavaScriptCore/runtime/InternalFunction.h]
[Creating forwarding header for JavaScriptCore/parser/SourceCode.h]
[Creating forwarding header for JavaScriptCore/heap/Strong.h]
[Creating forwarding header for JavaScriptCore/heap/StrongInlines.h]
  GEN      DerivedSources/JavaScriptCore/KeywordLookup.h
  GEN      DerivedSources/JavaScriptCore/Lexer.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/parser/Keywords.table
  GEN      DerivedSources/JavaScriptCore/RegExpJitTables.h
  GEN      DerivedSources/JavaScriptCore/ArrayConstructor.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/ArrayConstructor.cpp
  GEN      DerivedSources/JavaScriptCore/ArrayPrototype.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/ArrayPrototype.cpp
[Creating forwarding header for WebCore/page/GroupSettings.h]
[Creating forwarding header for WebCore/page/PageGroup.h]
[Creating forwarding header for WebCore/page/Page.h]
[Creating forwarding header for WebCore/page/FrameView.h]
[Creating forwarding header for WebCore/page/UserContentURLPattern.h]
[Creating forwarding header for WebCore/page/GestureTapHighlighter.h]
[Creating forwarding header for WebCore/page/UserStyleSheet.h]
[Creating forwarding header for WebCore/page/MediaCanStartListener.h]
[Creating forwarding header for WebCore/page/SecurityPolicy.h]
[Creating forwarding header for WebCore/page/WebCoreKeyboardUIMode.h]
[Creating forwarding header for WebCore/page/ChromeClient.h]
[Creating forwarding header for WebCore/page/UserContentTypes.h]
[Creating forwarding header for WebCore/page/WindowFeatures.h]
[Creating forwarding header for WebCore/page/MainFrame.h]
[Creating forwarding header for WebCore/page/PrintContext.h]
[Creating forwarding header for WebCore/page/UserScriptTypes.h]
[Creating forwarding header for WebCore/page/SecurityOriginHash.h]
[Creating forwarding header for WebCore/page/Settings.h]
[Creating forwarding header for WebCore/page/EventHandler.h]
[Creating forwarding header for WebCore/page/EditorClient.h]
[Creating forwarding header for WebCore/page/DOMWindow.h]
[Creating forwarding header for WebCore/page/UserScript.h]
[Creating forwarding header for WebCore/page/Chrome.h]
[Creating forwarding header for WebCore/page/ContextMenuController.h]
[Creating forwarding header for WebCore/page/ContextMenuClient.h]
[Creating forwarding header for WebCore/page/FocusController.h]
[Creating forwarding header for WebCore/page/DOMWindowExtension.h]
[Creating forwarding header for WebCore/page/Frame.h]
[Creating forwarding header for WebCore/page/SecurityOrigin.h]
[Creating forwarding header for WebCore/page/DragController.h]
[Creating forwarding header for WebCore/page/PageThrottler.h]
[Creating forwarding header for WebCore/page/FocusDirection.h]
[Creating forwarding header for WebCore/page/DragSession.h]
[Creating forwarding header for WebCore/page/DragActions.h]
[Creating forwarding header for WebCore/page/DragClient.h]
[Creating forwarding header for WebCore/page/PlugInClient.h]
[Creating forwarding header for WebCore/page/PageVisibilityState.h]
[Creating forwarding header for WebCore/page/AlternativeTextClient.h]
[Creating forwarding header for WebCore/page/LayoutMilestones.h]
[Creating forwarding header for WebCore/page/ViewState.h]
[Creating forwarding header for WebCore/page/scrolling/ScrollingConstraints.h]
[Creating forwarding header for WebCore/page/scrolling/ScrollingCoordinator.h]
[Creating forwarding header for WebCore/html/HTMLFormElement.h]
[Creating forwarding header for WebCore/html/HTMLPlugInElement.h]
[Creating forwarding header for WebCore/html/HTMLTableCellElement.h]
[Creating forwarding header for WebCore/html/HTMLTextAreaElement.h]
[Creating forwarding header for WebCore/html/HTMLInputElement.h]
[Creating forwarding header for WebCore/html/HTMLFrameElement.h]
[Creating forwarding header for WebCore/html/HTMLMediaElement.h]
[Creating forwarding header for WebCore/html/PluginDocument.h]
[Creating forwarding header for WebCore/html/HTMLIFrameElement.h]
[Creating forwarding header for WebCore/html/VoidCallback.h]
[Creating forwarding header for WebCore/html/HTMLFrameOwnerElement.h]
[Creating forwarding header for WebCore/html/HTMLPlugInImageElement.h]
[Creating forwarding header for WebCore/html/HTMLAppletElement.h]
[Creating forwarding header for WebCore/html/forms/FileIconLoader.h]
[Creating forwarding header for WebCore/html/parser/HTMLParserIdioms.h]
[Creating forwarding header for WebCore/workers/SharedWorkerStrategy.h]
[Creating forwarding header for WebCore/editing/VisibleUnits.h]
[Creating forwarding header for WebCore/editing/VisiblePosition.h]
[Creating forwarding header for WebCore/editing/FindOptions.h]
[Creating forwarding header for WebCore/editing/TextIterator.h]
[Creating forwarding header for WebCore/editing/TextAffinity.h]
[Creating forwarding header for WebCore/editing/EditorInsertAction.h]
[Creating forwarding header for WebCore/editing/DictationAlternative.h]
[Creating forwarding header for WebCore/editing/Editor.h]
[Creating forwarding header for WebCore/editing/EditAction.h]
  GEN      DerivedSources/JavaScriptCore/BooleanPrototype.lut.h
[Creating forwarding header for WebCore/editing/markup.h]
[Creating forwarding header for WebCore/editing/SpellChecker.h]
[Creating forwarding header for WebCore/editing/TextGranularity.h]
[Creating forwarding header for WebCore/editing/UndoStep.h]
[Creating forwarding header for WebCore/inspector/InspectorController.h]
[Creating forwarding header for WebCore/inspector/InspectorForwarding.h]
[Creating forwarding header for WebCore/inspector/InspectorClient.h]
[Creating forwarding header for WebCore/inspector/InspectorFrontendClientLocal.h]
[Creating forwarding header for WebCore/inspector/InspectorFrontendClient.h]
[Creating forwarding header for WebCore/Modules/webdatabase/DatabaseManagerClient.h]
[Creating forwarding header for WebCore/Modules/webdatabase/DatabaseManager.h]
[Creating forwarding header for WebCore/Modules/webdatabase/DatabaseDetails.h]
[Creating forwarding header for WebCore/Modules/geolocation/Geolocation.h]
[Creating forwarding header for WebCore/Modules/geolocation/GeolocationClient.h]
[Creating forwarding header for WebCore/Modules/geolocation/GeolocationError.h]
[Creating forwarding header for WebCore/Modules/geolocation/GeolocationPosition.h]
[Creating forwarding header for WebCore/Modules/geolocation/GeolocationController.h]
[Creating forwarding header for WebCore/Modules/battery/BatteryController.h]
[Creating forwarding header for WebCore/Modules/battery/BatteryStatus.h]
[Creating forwarding header for WebCore/Modules/battery/BatteryClient.h]
[Creating forwarding header for WebCore/Modules/notifications/NotificationClient.h]
[Creating forwarding header for WebCore/Modules/notifications/NotificationPermissionCallback.h]
[Creating forwarding header for WebCore/Modules/notifications/Notification.h]
[Creating forwarding header for WebCore/Modules/websockets/WebSocketHandshake.h]
[Creating forwarding header for WebCore/Modules/websockets/WebSocketChannel.h]
[Creating forwarding header for WebCore/Modules/indexeddb/IDBKeyRangeData.h]
[Creating forwarding header for WebCore/Modules/indexeddb/IDBGetResult.h]
[Creating forwarding header for WebCore/Modules/indexeddb/IDBKeyData.h]
[Creating forwarding header for WebCore/Modules/indexeddb/IDBDatabaseMetadata.h]
[Creating forwarding header for WebCore/Modules/indexeddb/IDBKeyPath.h]
[Creating forwarding header for WebCore/Modules/indexeddb/IDBFactoryBackendInterface.h]
[Creating forwarding header for WebCore/rendering/RenderTreeAsText.h]
[Creating forwarding header for WebCore/rendering/Pagination.h]
[Creating forwarding header for WebCore/rendering/RenderWidget.h]
[Creating forwarding header for WebCore/rendering/RenderObject.h]
[Creating forwarding header for WebCore/rendering/RenderLayer.h]
[Creating forwarding header for WebCore/rendering/RenderEmbeddedObject.h]
[Creating forwarding header for WebCore/rendering/RenderView.h]
[Creating forwarding header for WebCore/rendering/RenderSnapshottedPlugIn.h]
[Creating forwarding header for WebCore/rendering/RenderText.h]
[Creating forwarding header for WebCore/rendering/HitTestResult.h]
[Creating forwarding header for WebCore/rendering/RenderLayerBacking.h]
[Creating forwarding header for WebCore/accessibility/AccessibilityObject.h]
[Creating forwarding header for WebCore/accessibility/AXObjectCache.h]
[Creating forwarding header for WebCore/loader/HistoryController.h]
[Creating forwarding header for WebCore/loader/FormState.h]
[Creating forwarding header for WebCore/loader/ResourceLoaderOptions.h]
[Creating forwarding header for WebCore/loader/LoaderStrategy.h]
[Creating forwarding header for WebCore/loader/ProgressTracker.h]
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/BooleanPrototype.cpp
[Creating forwarding header for WebCore/loader/DocumentLoader.h]
[Creating forwarding header for WebCore/loader/FrameLoaderClient.h]
[Creating forwarding header for WebCore/loader/FrameNetworkingContext.h]
[Creating forwarding header for WebCore/loader/SubstituteData.h]
[Creating forwarding header for WebCore/loader/FrameLoader.h]
[Creating forwarding header for WebCore/loader/ProgressTrackerClient.h]
[Creating forwarding header for WebCore/loader/TextResourceDecoder.h]
[Creating forwarding header for WebCore/loader/SubframeLoader.h]
[Creating forwarding header for WebCore/loader/NavigationAction.h]
[Creating forwarding header for WebCore/loader/ResourceLoader.h]
[Creating forwarding header for WebCore/loader/PolicyChecker.h]
[Creating forwarding header for WebCore/loader/CrossOriginPreflightResultCache.h]
[Creating forwarding header for WebCore/loader/NetscapePlugInStreamLoader.h]
[Creating forwarding header for WebCore/loader/ResourceLoadScheduler.h]
[Creating forwarding header for WebCore/loader/SubresourceLoader.h]
[Creating forwarding header for WebCore/loader/FrameLoadRequest.h]
[Creating forwarding header for WebCore/loader/CookieJar.h]
[Creating forwarding header for WebCore/loader/FrameLoaderTypes.h]
[Creating forwarding header for WebCore/loader/ResourceBuffer.h]
[Creating forwarding header for WebCore/loader/appcache/ApplicationCache.h]
[Creating forwarding header for WebCore/loader/appcache/ApplicationCacheStorage.h]
[Creating forwarding header for WebCore/loader/cache/MemoryCache.h]
[Creating forwarding header for WebCore/loader/cache/CachedResource.h]
[Creating forwarding header for WebCore/loader/icon/IconDatabaseBase.h]
[Creating forwarding header for WebCore/loader/icon/IconDatabase.h]
[Creating forwarding header for WebCore/loader/icon/IconDatabaseClient.h]
[Creating forwarding header for WebCore/loader/archive/ArchiveResource.h]
[Creating forwarding header for WebCore/loader/archive/mhtml/MHTMLArchive.h]
[Creating forwarding header for WebCore/css/StyleProperties.h]
[Creating forwarding header for WebCore/dom/KeyboardEvent.h]
[Creating forwarding header for WebCore/dom/UserGestureIndicator.h]
[Creating forwarding header for WebCore/dom/Element.h]
[Creating forwarding header for WebCore/dom/ShadowRoot.h]
[Creating forwarding header for WebCore/dom/DocumentFragment.h]
[Creating forwarding header for WebCore/dom/DocumentMarkerController.h]
[Creating forwarding header for WebCore/dom/Event.h]
[Creating forwarding header for WebCore/dom/Document.h]
[Creating forwarding header for WebCore/dom/ViewportArguments.h]
[Creating forwarding header for WebCore/dom/Node.h]
[Creating forwarding header for WebCore/dom/Range.h]
[Creating forwarding header for WebCore/dom/ScriptExecutionContext.h]
[Creating forwarding header for WebCore/dom/ExceptionCode.h]
[Creating forwarding header for WebCore/dom/DOMImplementation.h]
[Creating forwarding header for WebCore/dom/NodeTraversal.h]
[Creating forwarding header for WebCore/dom/StyledElement.h]
[Creating forwarding header for WebCore/dom/Clipboard.h]
[Creating forwarding header for WebCore/dom/UIEventWithKeyState.h]
[Creating forwarding header for WebCore/dom/EventNames.h]
[Creating forwarding header for WebCore/dom/MouseEvent.h]
[Creating forwarding header for WebCore/dom/UserTypingGestureIndicator.h]
[Creating forwarding header for WebCore/history/BackForwardClient.h]
[Creating forwarding header for WebCore/history/HistoryItem.h]
[Creating forwarding header for WebCore/history/PageCache.h]
[Creating forwarding header for WebCore/history/BackForwardController.h]
[Creating forwarding header for WebCore/bindings/js/GCController.h]
[Creating forwarding header for WebCore/bindings/js/DOMWrapperWorld.h]
[Creating forwarding header for WebCore/bindings/js/JSPluginElementFunctions.h]
[Creating forwarding header for WebCore/bindings/js/SerializedScriptValue.h]
[Creating forwarding header for WebCore/bindings/js/JSDOMWindowBase.h]
[Creating forwarding header for WebCore/bindings/js/ScriptController.h]
[Creating forwarding header for WebCore/bindings/generic/RuntimeEnabledFeatures.h]
[Creating forwarding header for WebCore/platform/WindowsKeyboardCodes.h]
[Creating forwarding header for WebCore/platform/ColorChooser.h]
[Creating forwarding header for WebCore/platform/PlatformMouseEvent.h]
[Creating forwarding header for WebCore/platform/NotImplemented.h]
[Creating forwarding header for WebCore/platform/HostWindow.h]
  GEN      DerivedSources/JavaScriptCore/DateConstructor.lut.h
[Creating forwarding header for WebCore/platform/DatabaseStrategy.h]
[Creating forwarding header for WebCore/platform/Logging.h]
[Creating forwarding header for WebCore/platform/FileChooser.h]
[Creating forwarding header for WebCore/platform/PasteboardStrategy.h]
[Creating forwarding header for WebCore/platform/LocalizedStrings.h]
[Creating forwarding header for WebCore/platform/ScrollbarTheme.h]
[Creating forwarding header for WebCore/platform/Cursor.h]
[Creating forwarding header for WebCore/platform/UserActivity.h]
[Creating forwarding header for WebCore/platform/Widget.h]
[Creating forwarding header for WebCore/platform/PlatformScreen.h]
[Creating forwarding header for WebCore/platform/SuddenTermination.h]
[Creating forwarding header for WebCore/platform/LinkHash.h]
[Creating forwarding header for WebCore/platform/Language.h]
[Creating forwarding header for WebCore/platform/PlatformTouchEvent.h]
[Creating forwarding header for WebCore/platform/SharedBuffer.h]
[Creating forwarding header for WebCore/platform/PlatformKeyboardEvent.h]
[Creating forwarding header for WebCore/platform/Cookie.h]
[Creating forwarding header for WebCore/platform/PlatformPasteboard.h]
[Creating forwarding header for WebCore/platform/Pasteboard.h]
[Creating forwarding header for WebCore/platform/Length.h]
[Creating forwarding header for WebCore/platform/VisitedLinkStrategy.h]
[Creating forwarding header for WebCore/platform/SearchPopupMenu.h]
[Creating forwarding header for WebCore/platform/ScrollView.h]
[Creating forwarding header for WebCore/platform/PopupMenu.h]
[Creating forwarding header for WebCore/platform/PopupMenuClient.h]
[Creating forwarding header for WebCore/platform/ReferrerPolicy.h]
[Creating forwarding header for WebCore/platform/ColorChooserClient.h]
[Creating forwarding header for WebCore/platform/FileSystem.h]
[Creating forwarding header for WebCore/platform/ScrollTypes.h]
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/DateConstructor.cpp
[Creating forwarding header for WebCore/platform/Timer.h]
[Creating forwarding header for WebCore/platform/URL.h]
[Creating forwarding header for WebCore/platform/MemoryPressureHandler.h]
[Creating forwarding header for WebCore/platform/PlatformTouchPoint.h]
[Creating forwarding header for WebCore/platform/SchemeRegistry.h]
[Creating forwarding header for WebCore/platform/CookiesStrategy.h]
[Creating forwarding header for WebCore/platform/PlatformWheelEvent.h]
[Creating forwarding header for WebCore/platform/URLHash.h]
[Creating forwarding header for WebCore/platform/DragData.h]
[Creating forwarding header for WebCore/platform/ContextMenuItem.h]
[Creating forwarding header for WebCore/platform/ContextMenu.h]
[Creating forwarding header for WebCore/platform/PlatformStrategies.h]
[Creating forwarding header for WebCore/platform/MIMETypeRegistry.h]
[Creating forwarding header for WebCore/platform/gtk/GtkClickCounter.h]
[Creating forwarding header for WebCore/platform/gtk/GtkPopupMenu.h]
[Creating forwarding header for WebCore/platform/gtk/DragIcon.h]
[Creating forwarding header for WebCore/platform/gtk/ClipboardUtilitiesGtk.h]
[Creating forwarding header for WebCore/platform/gtk/DataObjectGtk.h]
[Creating forwarding header for WebCore/platform/gtk/GtkTouchContextHelper.h]
[Creating forwarding header for WebCore/platform/gtk/GtkUtilities.h]
[Creating forwarding header for WebCore/platform/gtk/WidgetBackingStoreGtkX11.h]
[Creating forwarding header for WebCore/platform/gtk/GUniquePtrGtk.h]
[Creating forwarding header for WebCore/platform/gtk/GtkDragAndDropHelper.h]
[Creating forwarding header for WebCore/platform/gtk/GtkVersioning.h]
[Creating forwarding header for WebCore/platform/gtk/PasteboardHelper.h]
[Creating forwarding header for WebCore/platform/gtk/ErrorsGtk.h]
[Creating forwarding header for WebCore/platform/gtk/GtkInputMethodFilter.h]
[Creating forwarding header for WebCore/platform/gtk/UserAgentGtk.h]
[Creating forwarding header for WebCore/platform/gtk/CompositionResults.h]
[Creating forwarding header for WebCore/platform/gtk/RedirectedXCompositeWindow.h]
[Creating forwarding header for WebCore/platform/network/NetworkStorageSession.h]
[Creating forwarding header for WebCore/platform/network/BlobRegistry.h]
[Creating forwarding header for WebCore/platform/network/CookieStorage.h]
[Creating forwarding header for WebCore/platform/network/DNS.h]
[Creating forwarding header for WebCore/platform/network/CredentialStorage.h]
[Creating forwarding header for WebCore/platform/network/HTTPParsers.h]
[Creating forwarding header for WebCore/platform/network/AuthenticationClient.h]
[Creating forwarding header for WebCore/platform/network/HTTPHeaderMap.h]
[Creating forwarding header for WebCore/platform/network/PlatformCookieJar.h]
[Creating forwarding header for WebCore/platform/network/ProxyServer.h]
[Creating forwarding header for WebCore/platform/network/NetworkingContext.h]
[Creating forwarding header for WebCore/platform/network/BlobData.h]
[Creating forwarding header for WebCore/platform/network/ProtectionSpace.h]
[Creating forwarding header for WebCore/platform/network/ResourceHandle.h]
[Creating forwarding header for WebCore/platform/network/ResourceHandleInternal.h]
[Creating forwarding header for WebCore/platform/network/SocketStreamHandleClient.h]
[Creating forwarding header for WebCore/platform/network/BlobRegistryImpl.h]
[Creating forwarding header for WebCore/platform/network/Credential.h]
[Creating forwarding header for WebCore/platform/network/ResourceLoadPriority.h]
[Creating forwarding header for WebCore/platform/network/SynchronousLoaderClient.h]
[Creating forwarding header for WebCore/platform/network/ResourceHandleClient.h]
[Creating forwarding header for WebCore/platform/geoclue/GeolocationProviderGeoclue.h]
[Creating forwarding header for WebCore/platform/geoclue/GeolocationProviderGeoclueClient.h]
[Creating forwarding header for WebCore/platform/text/TextDirection.h]
[Creating forwarding header for WebCore/platform/text/TextChecking.h]
[Creating forwarding header for WebCore/platform/text/TextEncoding.h]
[Creating forwarding header for WebCore/platform/text/TextCheckerClient.h]
[Creating forwarding header for WebCore/platform/text/enchant/TextCheckerEnchant.h]
[Creating forwarding header for WebCore/platform/sql/SQLiteStatement.h]
[Creating forwarding header for WebCore/platform/sql/SQLiteDatabase.h]
[Creating forwarding header for WebCore/platform/sql/SQLiteTransaction.h]
[Creating forwarding header for WebCore/platform/cairo/WidgetBackingStoreCairo.h]
[Creating forwarding header for WebCore/platform/cairo/WidgetBackingStore.h]
[Creating forwarding header for WebCore/platform/glib/BatteryProviderUPower.h]
[Creating forwarding header for WebCore/platform/glib/BatteryProviderUPowerClient.h]
[Creating forwarding header for WebCore/platform/graphics/FloatPoint.h]
[Creating forwarding header for WebCore/platform/graphics/Icon.h]
[Creating forwarding header for WebCore/platform/graphics/GraphicsContext.h]
[Creating forwarding header for WebCore/platform/graphics/IntRect.h]
[Creating forwarding header for WebCore/platform/graphics/GLContext.h]
[Creating forwarding header for WebCore/platform/graphics/Color.h]
[Creating forwarding header for WebCore/platform/graphics/FloatQuad.h]
[Creating forwarding header for WebCore/platform/graphics/IntSize.h]
[Creating forwarding header for WebCore/platform/graphics/Gradient.h]
[Creating forwarding header for WebCore/platform/graphics/GlyphPageTreeNode.h]
[Creating forwarding header for WebCore/platform/graphics/Region.h]
[Creating forwarding header for WebCore/platform/graphics/FontCache.h]
[Creating forwarding header for WebCore/platform/graphics/PlatformLayer.h]
[Creating forwarding header for WebCore/platform/graphics/ImageSource.h]
[Creating forwarding header for WebCore/platform/graphics/Path.h]
[Creating forwarding header for WebCore/platform/graphics/Image.h]
[Creating forwarding header for WebCore/platform/graphics/FloatSize.h]
[Creating forwarding header for WebCore/platform/graphics/Font.h]
[Creating forwarding header for WebCore/platform/graphics/BitmapImage.h]
[Creating forwarding header for WebCore/platform/graphics/FloatRect.h]
[Creating forwarding header for WebCore/platform/graphics/GraphicsLayer.h]
[Creating forwarding header for WebCore/platform/graphics/IntPoint.h]
[Creating forwarding header for WebCore/platform/graphics/GraphicsLayerClient.h]
[Creating forwarding header for WebCore/platform/graphics/filters/FilterOperation.h]
[Creating forwarding header for WebCore/platform/graphics/filters/FilterOperations.h]
[Creating forwarding header for WebCore/platform/graphics/transforms/TransformationMatrix.h]
[Creating forwarding header for WebCore/platform/graphics/transforms/AffineTransform.h]
[Creating forwarding header for WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.h]
[Creating forwarding header for WebCore/platform/graphics/cairo/RefPtrCairo.h]
[Creating forwarding header for WebCore/platform/graphics/cairo/CairoUtilities.h]
[Creating forwarding header for WebCore/platform/graphics/cairo/PlatformContextCairo.h]
[Creating forwarding header for WebCore/bridge/IdentifierRep.h]
[Creating forwarding header for WebCore/bridge/npruntime_internal.h]
[Creating forwarding header for WebCore/storage/StorageNamespace.h]
[Creating forwarding header for WebCore/storage/StorageMap.h]
[Creating forwarding header for WebCore/storage/StorageTracker.h]
[Creating forwarding header for WebCore/storage/StorageEventDispatcher.h]
  GEN      DerivedSources/JavaScriptCore/DatePrototype.lut.h
[Creating forwarding header for WebCore/storage/Storage.h]
[Creating forwarding header for WebCore/storage/StorageStrategy.h]
[Creating forwarding header for WebCore/storage/StorageArea.h]
[Creating forwarding header for WebCore/plugins/npapi.h]
[Creating forwarding header for WebCore/plugins/npruntime.h]
[Creating forwarding header for WebCore/plugins/PluginData.h]
[Creating forwarding header for WebCore/plugins/PluginViewBase.h]
[Creating forwarding header for WebCore/plugins/npfunctions.h]
[Creating forwarding header for WebCore/plugins/PluginStrategy.h]
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/DatePrototype.cpp
  GEN      DerivedSources/JavaScriptCore/ErrorPrototype.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/ErrorPrototype.cpp
  GEN      DerivedSources/JavaScriptCore/JSDataViewPrototype.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/JSDataViewPrototype.cpp
  GEN      DerivedSources/JavaScriptCore/JSGlobalObject.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
[Creating forwarding header for WebKit2/Shared/API/c/WKBase.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKFindOptions.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKMutableDictionary.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKContextMenuItemTypes.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKString.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKDictionary.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKGeometry.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKError.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKURL.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKURLResponse.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKConnectionRef.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKPageLoadTypes.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKUserContentInjectedFrames.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKMutableArray.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKURLRequest.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKDeclarationSpecifiers.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKUserScriptInjectionTime.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKType.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKPageVisibilityTypes.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKImage.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKEvent.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKData.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKSerializedScriptValue.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKNumber.h]
[Creating forwarding header for WebKit2/Shared/API/c/WKArray.h]
[Creating forwarding header for WebKit2/Shared/API/c/gtk/WKBaseGtk.h]
[Creating forwarding header for WebKit2/NetworkProcess/NetworkProcess.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKPage.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKGeolocationPosition.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKFramePolicyListener.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKPageFindMatchesClient.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKPageFindClient.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKInspector.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKContextConnectionClient.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKSessionRef.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKTextChecker.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKFrame.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKContext.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKContextHistoryClient.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKIconDatabase.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKBackForwardListItemRef.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKHitTestResult.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKDownload.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKPageGroup.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKNavigationDataRef.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKOpenPanelResultListener.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKGeolocationManager.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKPreferencesRef.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKCredentialTypes.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKBackForwardListRef.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKPageFormClient.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKContextInjectedBundleClient.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKFormSubmissionListener.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKContextDownloadClient.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKOpenPanelParameters.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKPageContextMenuClient.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKNativeEvent.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKAPICast.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WebKit2_C.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKPagePolicyClient.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKPageLoaderClient.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKPageUIClient.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKGeolocationPermissionRequest.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/WKProtectionSpaceTypes.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/gtk/WKInspectorClientGtk.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/gtk/WKView.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/gtk/WKFullScreenClientGtk.h]
[Creating forwarding header for WebKit2/UIProcess/API/cpp/WKRetainPtr.h]
[Creating forwarding header for WebKit2/WebProcess/WebProcess.h]
[Creating forwarding header for WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageContextMenuClient.h]
[Creating forwarding header for WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageFormClient.h]
[Creating forwarding header for WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageDiagnosticLoggingClient.h]
[Creating forwarding header for WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageUIClient.h]
[Creating forwarding header for WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageLoaderClient.h]
[Creating forwarding header for WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageEditorClient.h]
[Creating forwarding header for WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePolicyClient.h]
[Creating forwarding header for WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageResourceLoadClient.h]
[Creating forwarding header for WebKit2/WebProcess/InjectedBundle/API/c/WKBundleInitialize.h]
[Creating forwarding header for WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePageFullScreenClient.h]
  GEN      DerivedSources/JavaScriptCore/JSONObject.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/JSONObject.cpp
  GEN      DerivedSources/JavaScriptCore/JSPromiseConstructor.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/JSPromiseConstructor.cpp
  GEN      DerivedSources/JavaScriptCore/JSPromisePrototype.lut.h
[Creating forwarding header for WebCore/platform/network/soup/SoupNetworkSession.h]
[Creating forwarding header for WebCore/platform/network/soup/CertificateInfo.h]
[Creating forwarding header for WebCore/platform/network/soup/AuthenticationChallenge.h]
[Creating forwarding header for WebCore/platform/network/soup/ResourceResponse.h]
[Creating forwarding header for WebCore/platform/network/soup/SocketStreamHandle.h]
[Creating forwarding header for WebCore/platform/network/soup/GUniquePtrSoup.h]
[Creating forwarding header for WebCore/platform/network/soup/SocketStreamError.h]
[Creating forwarding header for WebCore/platform/network/soup/ResourceError.h]
[Creating forwarding header for WebCore/platform/network/soup/CookieJarSoup.h]
[Creating forwarding header for WebCore/platform/network/soup/ResourceRequest.h]
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/JSPromisePrototype.cpp
  GEN      DerivedSources/JavaScriptCore/MathObject.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/MathObject.cpp
[Creating forwarding header for WebKit2/Shared/API/c/soup/WKBaseSoup.h]
[Creating forwarding header for WebKit2/UIProcess/API/C/soup/WKSoupCustomProtocolRequestManager.h]
  GEN      DerivedSources/JavaScriptCore/NamePrototype.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/NamePrototype.cpp
  GEN      DerivedSources/JavaScriptCore/NumberConstructor.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/NumberConstructor.cpp
  GEN      DerivedSources/JavaScriptCore/NumberPrototype.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/NumberPrototype.cpp
  GEN      DerivedSources/JavaScriptCore/ObjectConstructor.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/ObjectConstructor.cpp
  GEN      DerivedSources/JavaScriptCore/RegExpConstructor.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/RegExpConstructor.cpp
  GEN      DerivedSources/JavaScriptCore/RegExpObject.lut.h
  GEN      DerivedSources/JavaScriptCore/RegExpPrototype.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/RegExpObject.cpp
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/RegExpPrototype.cpp
  GEN      DerivedSources/JavaScriptCore/StringConstructor.lut.h
Creating hashtable for /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/StringConstructor.cpp
  GEN      DerivedSources/JavaScriptCore/LLIntDesiredOffsets.h
  GEN      DerivedSources/Platform/ColorData.cpp
  GEN      DerivedSources/Platform/WebKitFontFamilyNames.h
  GEN      DerivedSources/Platform/Geoclue2Interface.h
  GEN      DerivedSources/WebCore/CSSGrammar.cpp
DerivedSources/WebCore/CSSGrammar.y:62.1-12: warning: deprecated directive, use '%define api.pure' [-Wdeprecated]
   62 | %pure_parser
      | ^~~~~~~~~~~~
offlineasm: Parsing /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/llint/LowLevelInterpreter.asm and creating offset extractor DerivedSources/JavaScriptCore/LLIntDesiredOffsets.h.
offlineasm: Including file /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm
offlineasm: Including file /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm
DerivedSources/WebCore/CSSGrammar.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
  GEN      DerivedSources/WebCore/CSSPropertyNames.h
  GEN      DerivedSources/WebCore/CSSValueKeywords.h
  GEN      DerivedSources/WebCore/CommandLineAPIModuleSource.h
  GEN      DerivedSources/WebCore/CommandLineAPIModuleSource.h
  GEN      DerivedSources/WebCore/EventFactory.cpp
  GEN      DerivedSources/WebCore/EventHeaders.h
  GEN      DerivedSources/WebCore/EventInterfaces.h
  GEN      DerivedSources/WebCore/EventTargetHeaders.h
  GEN      DerivedSources/WebCore/EventTargetInterfaces.h
  GEN      DerivedSources/WebCore/ExceptionCodeDescription.cpp
  GEN      DerivedSources/WebCore/ExceptionHeaders.h
  GEN      DerivedSources/WebCore/ExceptionInterfaces.h
  GEN      DerivedSources/WebCore/HTMLNames.h
  GEN      DerivedSources/WebCore/HTMLEntityTable.cpp
  GEN      DerivedSources/WebCore/InjectedScriptCanvasModuleSource.h
  GEN      DerivedSources/WebCore/InjectedScriptCanvasModuleSource.h
  GEN      DerivedSources/WebCore/InspectorOverlayPage.h
  GEN      DerivedSources/WebCore/InspectorOverlayPage.h
  GEN      DerivedSources/WebCore/InspectorWeb.json
  GEN      DerivedSources/JavaScriptCore/InspectorJS.json
  GEN      DerivedSources/WebCore/idl_supplemental_dependencies
  GEN      DerivedSources/WebCore/MathMLElementFactory.cpp
  GEN      DerivedSources/WebCore/MathMLNames.cpp
  GEN      DerivedSources/WebCore/PlugInsResources.h
  GEN      DerivedSources/WebCore/SettingsMacros.h
  GEN      DerivedSources/WebCore/UserAgentStyleSheets.h
  GEN      DerivedSources/WebCore/XLinkNames.cpp
  GEN      DerivedSources/WebCore/XMLNames.cpp
  GEN      DerivedSources/WebCore/XMLNames.h
  GEN      DerivedSources/WebCore/XMLNSNames.cpp
  GEN      DerivedSources/WebCore/XMLNSNames.h
  GEN      DerivedSources/WebCore/XMLViewerCSS.h
  GEN      DerivedSources/WebCore/XMLViewerCSS.h
  GEN      DerivedSources/WebCore/XMLViewerJS.h
  GEN      DerivedSources/WebCore/XMLViewerJS.h
  GEN      DerivedSources/WebCore/XPathGrammar.cpp
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/xml/XPathGrammar.y:50.1-12: warning: deprecated directive, use '%define api.pure' [-Wdeprecated]
   50 | %pure_parser
      | ^~~~~~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/xml/XPathGrammar.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
  GEN      DerivedSources/WebCore/JSSVGDocument.h
  GEN      DerivedSources/WebCore/SVGElementFactory.cpp
  GEN      DerivedSources/WebInspectorUI/GResourceBundle.c
  GEN      DerivedSources/WebCore/JSSVGAElement.h
  GEN      DerivedSources/WebCore/JSSVGAltGlyphDefElement.h
offlineasm: offset extractor DerivedSources/JavaScriptCore/LLIntDesiredOffsets.h successfully generated.
  GEN      DerivedSources/WebCore/JSSVGAltGlyphElement.h
  GEN      DerivedSources/WebCore/JSSVGAltGlyphItemElement.h
  GEN      DerivedSources/WebCore/JSSVGAngle.h
  GEN      DerivedSources/WebCore/JSSVGAnimateColorElement.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedAngle.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedBoolean.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedEnumeration.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedInteger.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedLength.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedLengthList.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedNumber.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedNumberList.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedPreserveAspectRatio.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedRect.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedString.h
  GEN      DerivedSources/WebCore/JSSVGAnimatedTransformList.h
  GEN      DerivedSources/WebCore/JSSVGAnimateElement.h
  GEN      DerivedSources/WebCore/JSSVGAnimateMotionElement.h
  GEN      DerivedSources/WebCore/JSSVGAnimateTransformElement.h
  GEN      DerivedSources/WebCore/JSSVGAnimationElement.h
  GEN      DerivedSources/WebCore/JSSVGCircleElement.h
  GEN      DerivedSources/WebCore/JSSVGClipPathElement.h
  GEN      DerivedSources/WebCore/JSSVGColor.h
  GEN      DerivedSources/WebCore/JSSVGComponentTransferFunctionElement.h
  GEN      DerivedSources/WebCore/JSSVGCursorElement.h
  GEN      DerivedSources/WebCore/JSSVGDefsElement.h
  GEN      DerivedSources/WebCore/JSSVGDescElement.h
  GEN      DerivedSources/WebCore/JSSVGElement.h
  GEN      DerivedSources/WebCore/JSSVGElementInstance.h
  GEN      DerivedSources/WebCore/JSSVGElementInstanceList.h
  GEN      DerivedSources/WebCore/JSSVGEllipseElement.h
  GEN      DerivedSources/WebCore/JSSVGException.h
  GEN      DerivedSources/WebCore/JSSVGExternalResourcesRequired.h
  GEN      DerivedSources/WebCore/JSSVGFEBlendElement.h
  GEN      DerivedSources/WebCore/JSSVGFEColorMatrixElement.h
  GEN      DerivedSources/WebCore/JSSVGFEComponentTransferElement.h
  GEN      DerivedSources/WebCore/JSSVGFECompositeElement.h
  GEN      DerivedSources/WebCore/JSSVGFEConvolveMatrixElement.h
  GEN      DerivedSources/WebCore/JSSVGFEDiffuseLightingElement.h
  GEN      DerivedSources/WebCore/JSSVGFEDisplacementMapElement.h
  GEN      DerivedSources/WebCore/JSSVGFEDistantLightElement.h
  GEN      DerivedSources/WebCore/JSSVGFEDropShadowElement.h
  GEN      DerivedSources/WebCore/JSSVGFEFloodElement.h
  GEN      DerivedSources/WebCore/JSSVGFEFuncAElement.h
  GEN      DerivedSources/WebCore/JSSVGFEFuncBElement.h
  GEN      DerivedSources/WebCore/JSSVGFEFuncGElement.h
  GEN      DerivedSources/WebCore/JSSVGFEFuncRElement.h
  GEN      DerivedSources/WebCore/JSSVGFEGaussianBlurElement.h
  GEN      DerivedSources/WebCore/JSSVGFEImageElement.h
  GEN      DerivedSources/WebCore/JSSVGFEMergeElement.h
  GEN      DerivedSources/WebCore/JSSVGFEMergeNodeElement.h
  GEN      DerivedSources/WebCore/JSSVGFEMorphologyElement.h
  GEN      DerivedSources/WebCore/JSSVGFEOffsetElement.h
  GEN      DerivedSources/WebCore/JSSVGFEPointLightElement.h
  GEN      DerivedSources/WebCore/JSSVGFESpecularLightingElement.h
  GEN      DerivedSources/WebCore/JSSVGFESpotLightElement.h
  GEN      DerivedSources/WebCore/JSSVGFETileElement.h
  GEN      DerivedSources/WebCore/JSSVGFETurbulenceElement.h
  GEN      DerivedSources/WebCore/JSSVGFilterElement.h
  GEN      DerivedSources/WebCore/JSSVGFilterPrimitiveStandardAttributes.h
  GEN      DerivedSources/WebCore/JSSVGFitToViewBox.h
  GEN      DerivedSources/WebCore/JSSVGFontElement.h
  GEN      DerivedSources/WebCore/JSSVGFontFaceElement.h
  GEN      DerivedSources/WebCore/JSSVGFontFaceFormatElement.h
  GEN      DerivedSources/WebCore/JSSVGFontFaceNameElement.h
  GEN      DerivedSources/WebCore/JSSVGFontFaceSrcElement.h
  GEN      DerivedSources/WebCore/JSSVGFontFaceUriElement.h
  GEN      DerivedSources/WebCore/JSSVGForeignObjectElement.h
  GEN      DerivedSources/WebCore/JSSVGGElement.h
  GEN      DerivedSources/WebCore/JSSVGGlyphElement.h
  GEN      DerivedSources/WebCore/JSSVGGlyphRefElement.h
  GEN      DerivedSources/WebCore/JSSVGGradientElement.h
  GEN      DerivedSources/WebCore/JSSVGGraphicsElement.h
  GEN      DerivedSources/WebCore/JSSVGHKernElement.h
  GEN      DerivedSources/WebCore/JSSVGImageElement.h
  GEN      DerivedSources/WebCore/JSSVGLength.h
  GEN      DerivedSources/WebCore/JSSVGLengthList.h
  GEN      DerivedSources/WebCore/JSSVGLinearGradientElement.h
  GEN      DerivedSources/WebCore/JSSVGLineElement.h
  GEN      DerivedSources/WebCore/JSSVGMPathElement.h
  GEN      DerivedSources/WebCore/JSSVGMarkerElement.h
  GEN      DerivedSources/WebCore/JSSVGMaskElement.h
  GEN      DerivedSources/WebCore/JSSVGMatrix.h
  GEN      DerivedSources/WebCore/JSSVGMetadataElement.h
  GEN      DerivedSources/WebCore/JSSVGMissingGlyphElement.h
  GEN      DerivedSources/WebCore/JSSVGNumber.h
  GEN      DerivedSources/WebCore/JSSVGNumberList.h
  GEN      DerivedSources/WebCore/JSSVGPaint.h
  GEN      DerivedSources/WebCore/JSSVGPathElement.h
  GEN      DerivedSources/WebCore/JSSVGPathSegArcAbs.h
  GEN      DerivedSources/WebCore/JSSVGPathSegArcRel.h
  GEN      DerivedSources/WebCore/JSSVGPathSegClosePath.h
  GEN      DerivedSources/WebCore/JSSVGPathSeg.h
  GEN      DerivedSources/WebCore/JSSVGPathSegCurvetoCubicAbs.h
  GEN      DerivedSources/WebCore/JSSVGPathSegCurvetoCubicRel.h
  GEN      DerivedSources/WebCore/JSSVGPathSegCurvetoCubicSmoothAbs.h
  GEN      DerivedSources/WebCore/JSSVGPathSegCurvetoCubicSmoothRel.h
  GEN      DerivedSources/WebCore/JSSVGPathSegCurvetoQuadraticAbs.h
  GEN      DerivedSources/WebCore/JSSVGPathSegCurvetoQuadraticRel.h
  GEN      DerivedSources/WebCore/JSSVGPathSegCurvetoQuadraticSmoothAbs.h
  GEN      DerivedSources/WebCore/JSSVGPathSegCurvetoQuadraticSmoothRel.h
  GEN      DerivedSources/WebCore/JSSVGPathSegLinetoAbs.h
  GEN      DerivedSources/WebCore/JSSVGPathSegLinetoHorizontalAbs.h
  GEN      DerivedSources/WebCore/JSSVGPathSegLinetoHorizontalRel.h
  GEN      DerivedSources/WebCore/JSSVGPathSegLinetoRel.h
  GEN      DerivedSources/WebCore/JSSVGPathSegLinetoVerticalAbs.h
  GEN      DerivedSources/WebCore/JSSVGPathSegLinetoVerticalRel.h
  GEN      DerivedSources/WebCore/JSSVGPathSegList.h
  GEN      DerivedSources/WebCore/JSSVGPathSegMovetoAbs.h
  GEN      DerivedSources/WebCore/JSSVGPathSegMovetoRel.h
  GEN      DerivedSources/WebCore/JSSVGPatternElement.h
  GEN      DerivedSources/WebCore/JSSVGPoint.h
  GEN      DerivedSources/WebCore/JSSVGPointList.h
  GEN      DerivedSources/WebCore/JSSVGPolygonElement.h
  GEN      DerivedSources/WebCore/JSSVGPolylineElement.h
  GEN      DerivedSources/WebCore/JSSVGPreserveAspectRatio.h
  GEN      DerivedSources/WebCore/JSSVGRadialGradientElement.h
  GEN      DerivedSources/WebCore/JSSVGRect.h
  GEN      DerivedSources/WebCore/JSSVGRectElement.h
  GEN      DerivedSources/WebCore/JSSVGRenderingIntent.h
  GEN      DerivedSources/WebCore/JSSVGScriptElement.h
  GEN      DerivedSources/WebCore/JSSVGSetElement.h
  GEN      DerivedSources/WebCore/JSSVGStopElement.h
  GEN      DerivedSources/WebCore/JSSVGStringList.h
  GEN      DerivedSources/WebCore/JSSVGStyleElement.h
  GEN      DerivedSources/WebCore/JSSVGSVGElement.h
  GEN      DerivedSources/WebCore/JSSVGSwitchElement.h
  GEN      DerivedSources/WebCore/JSSVGSymbolElement.h
  GEN      DerivedSources/WebCore/JSSVGTests.h
  GEN      DerivedSources/WebCore/JSSVGTextContentElement.h
  GEN      DerivedSources/WebCore/JSSVGTextElement.h
  GEN      DerivedSources/WebCore/JSSVGTextPathElement.h
  GEN      DerivedSources/WebCore/JSSVGTextPositioningElement.h
  GEN      DerivedSources/WebCore/JSSVGTitleElement.h
  GEN      DerivedSources/WebCore/JSSVGTransform.h
  GEN      DerivedSources/WebCore/JSSVGTransformList.h
  GEN      DerivedSources/WebCore/JSSVGTRefElement.h
  GEN      DerivedSources/WebCore/JSSVGTSpanElement.h
  GEN      DerivedSources/WebCore/JSSVGUnitTypes.h
  GEN      DerivedSources/WebCore/JSSVGURIReference.h
  GEN      DerivedSources/WebCore/JSSVGUseElement.h
  GEN      DerivedSources/WebCore/JSSVGViewElement.h
  GEN      DerivedSources/WebCore/JSSVGViewSpec.h
  GEN      DerivedSources/WebCore/JSSVGVKernElement.h
  GEN      DerivedSources/WebCore/JSSVGZoomAndPan.h
  GEN      DerivedSources/WebCore/JSSVGZoomEvent.h
  GEN      DerivedSources/WebKit2/AuthenticationManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/AuthenticationManagerMessages.h
  GEN      DerivedSources/WebKit2/CustomProtocolManagerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/CustomProtocolManagerProxyMessages.h
  GEN      DerivedSources/WebKit2/CustomProtocolManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/CustomProtocolManagerMessages.h
  GEN      DerivedSources/WebKit2/DownloadProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/DownloadProxyMessages.h
  GEN      DerivedSources/WebKit2/DrawingAreaMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/DrawingAreaMessages.h
  GEN      DerivedSources/WebKit2/DrawingAreaProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/DrawingAreaProxyMessages.h
  GEN      DerivedSources/WebKit2/EventDispatcherMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/EventDispatcherMessages.h
  GEN      DerivedSources/WebKit2/NetworkConnectionToWebProcessMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/NetworkConnectionToWebProcessMessages.h
  GEN      DerivedSources/WebKit2/NetworkProcessConnectionMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/NetworkProcessConnectionMessages.h
  GEN      DerivedSources/WebKit2/NetworkProcessMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/NetworkProcessMessages.h
  GEN      DerivedSources/WebKit2/NetworkProcessProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/NetworkProcessProxyMessages.h
  GEN      DerivedSources/WebKit2/NetworkResourceLoaderMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/NetworkResourceLoaderMessages.h
  GEN      DerivedSources/WebKit2/NPObjectMessageReceiverMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/NPObjectMessageReceiverMessages.h
  GEN      DerivedSources/WebKit2/PluginControllerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/PluginControllerProxyMessages.h
  GEN      DerivedSources/WebKit2/PluginProcessConnectionManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/PluginProcessConnectionManagerMessages.h
  GEN      DerivedSources/WebKit2/PluginProcessConnectionMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/PluginProcessConnectionMessages.h
  GEN      DerivedSources/WebKit2/PluginProcessMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/PluginProcessMessages.h
  GEN      DerivedSources/WebKit2/PluginProcessProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/PluginProcessProxyMessages.h
  GEN      DerivedSources/WebKit2/PluginProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/PluginProxyMessages.h
  GEN      DerivedSources/WebKit2/StorageAreaMapMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/StorageAreaMapMessages.h
  GEN      DerivedSources/WebKit2/StorageManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/StorageManagerMessages.h
  GEN      DerivedSources/WebKit2/WebApplicationCacheManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebApplicationCacheManagerMessages.h
  GEN      DerivedSources/WebKit2/WebApplicationCacheManagerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebApplicationCacheManagerProxyMessages.h
  GEN      DerivedSources/WebKit2/WebBatteryManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebBatteryManagerMessages.h
  GEN      DerivedSources/WebKit2/WebBatteryManagerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebBatteryManagerProxyMessages.h
  GEN      DerivedSources/WebKit2/WebContextMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebContextMessages.h
  GEN      DerivedSources/WebKit2/WebConnectionMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebConnectionMessages.h
  GEN      DerivedSources/WebKit2/WebCookieManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebCookieManagerMessages.h
  GEN      DerivedSources/WebKit2/WebCookieManagerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebCookieManagerProxyMessages.h
  GEN      DerivedSources/WebKit2/WebDatabaseManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebDatabaseManagerMessages.h
  GEN      DerivedSources/WebKit2/WebDatabaseManagerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebDatabaseManagerProxyMessages.h
  GEN      DerivedSources/WebKit2/WebFullScreenManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebFullScreenManagerMessages.h
  GEN      DerivedSources/WebKit2/WebFullScreenManagerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebFullScreenManagerProxyMessages.h
  GEN      DerivedSources/WebKit2/WebGeolocationManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebGeolocationManagerMessages.h
  GEN      DerivedSources/WebKit2/WebGeolocationManagerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebGeolocationManagerProxyMessages.h
  GEN      DerivedSources/WebKit2/WebIconDatabaseMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebIconDatabaseMessages.h
  GEN      DerivedSources/WebKit2/WebIconDatabaseProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebIconDatabaseProxyMessages.h
  GEN      DerivedSources/WebKit2/WebInspectorMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebInspectorMessages.h
  GEN      DerivedSources/WebKit2/WebInspectorProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebInspectorProxyMessages.h
  GEN      DerivedSources/WebKit2/WebMediaCacheManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebMediaCacheManagerMessages.h
  GEN      DerivedSources/WebKit2/WebMediaCacheManagerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebMediaCacheManagerProxyMessages.h
  GEN      DerivedSources/WebKit2/WebNetworkInfoManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebNetworkInfoManagerMessages.h
  GEN      DerivedSources/WebKit2/WebNetworkInfoManagerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebNetworkInfoManagerProxyMessages.h
  GEN      DerivedSources/WebKit2/WebNotificationManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebNotificationManagerMessages.h
  GEN      DerivedSources/WebKit2/WebOriginDataManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebOriginDataManagerMessages.h
  GEN      DerivedSources/WebKit2/WebOriginDataManagerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebOriginDataManagerProxyMessages.h
  GEN      DerivedSources/WebKit2/WebPageGroupProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebPageGroupProxyMessages.h
  GEN      DerivedSources/WebKit2/WebPageProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebPageProxyMessages.h
  GEN      DerivedSources/WebKit2/WebPageMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebPageMessages.h
  GEN      DerivedSources/WebKit2/WebProcessConnectionMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebProcessConnectionMessages.h
  GEN      DerivedSources/WebKit2/WebProcessMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebProcessMessages.h
  GEN      DerivedSources/WebKit2/WebProcessProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebProcessProxyMessages.h
  GEN      DerivedSources/WebKit2/WebResourceCacheManagerMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebResourceCacheManagerMessages.h
  GEN      DerivedSources/WebKit2/WebResourceCacheManagerProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebResourceCacheManagerProxyMessages.h
  GEN      DerivedSources/WebKit2/WebResourceLoaderMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebResourceLoaderMessages.h
  GEN      DerivedSources/WebKit2/WebVibrationProxyMessageReceiver.cpp
  GEN      DerivedSources/WebKit2/WebVibrationProxyMessages.h
  GEN      DerivedSources/WebKit2/webkit2gtk/webkit2/WebKitEnumTypes.cpp
  GEN      stamp-webkit2enumtypes
  GEN      stamp-webkit2marshal.cpp
  GEN      stamp-webkit2marshal.h
INFO: Reading /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebKit2/UIProcess/API/gtk/webkit2marshal.list...
INFO: Reading /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebKit2/UIProcess/API/gtk/webkit2marshal.list...
cd . && /bin/sh ./config.status DerivedSources/WebKit2/webkit2gtk/webkit2/WebKitVersion.h
  GEN      DerivedSources/WebInspectorUI/WebKit2GResourceBundle.c
make WebKitGTK-3.0.pot-update
make[1]: Entering directory '/home/johny/webkitgtk/src/build-gtk'
config.status: creating DerivedSources/WebKit2/webkit2gtk/webkit2/WebKitVersion.h
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/ar.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/ar.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/as.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/as.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/bg.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/bg.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/cs.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/cs.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/de.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/de.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/el.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/el.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/en_CA.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/en_CA.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/en_GB.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/en_GB.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/eo.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/eo.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/es.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/es.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/et.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/et.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/eu.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/eu.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/fr.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/fr.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/gl.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/gl.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/gu.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/gu.po
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/gu.po:8: warning: header field 'Language' missing in header
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/he.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/he.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/hi.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/hi.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/hu.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/hu.po
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/hu.po:6: warning: header field 'Language' still has the initial default value
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/id.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/id.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/it.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/it.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/ja.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/ja.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/kn.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/kn.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/ko.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/ko.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/lt.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/lt.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/lv.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/lv.po
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/lv.po:5: warning: header field 'Language' still has the initial default value
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/ml.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/ml.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/mr.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/mr.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/nb.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/nb.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/nl.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/nl.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/or.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/or.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/pa.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/pa.po
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/pa.po:5: warning: header field 'Language' still has the initial default value
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/pl.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/pl.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/pt.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/pt.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/pt_BR.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/pt_BR.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
package_gnu=''; \
if test -n '' || test 'http://bugs.webkit.org/' = '@'PACKAGE_BUGREPORT'@'; then \
  msgid_bugs_address=''; \
else \
  msgid_bugs_address='http://bugs.webkit.org/'; \
fi; \
case `/usr/bin/xgettext --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \
  '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \
    /usr/bin/xgettext \
        --default-domain=WebKitGTK-3.0 \
        --directory=/home/johny/webkitgtk/src/webkitgtk-2.4.11 \
        --directory=/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk \
        --add-comments=TRANSLATORS:  \
        --files-from=./Source/WebCore/platform/gtk/po/POTFILES \
        --copyright-holder='' \
        --msgid-bugs-address="$msgid_bugs_address" \
        --keyword=_ \
        --keyword=N_ \
        -o ./Source/WebCore/platform/gtk/po/WebKitGTK-3.0.pot \
    ;; \
  *) \
    /usr/bin/xgettext \
        --default-domain=WebKitGTK-3.0 \
        --directory=/home/johny/webkitgtk/src/webkitgtk-2.4.11 \
        --directory=/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk \
        --add-comments=TRANSLATORS:  \
        --files-from=./Source/WebCore/platform/gtk/po/POTFILES \
        --copyright-holder='' \
        --package-name="${package_gnu}webkitgtk" \
        --package-version='2.4.11' \
        --msgid-bugs-address="$msgid_bugs_address" \
        --keyword=_ \
        --keyword=N_ \
        -o ./Source/WebCore/platform/gtk/po/WebKitGTK-3.0.pot \
    ;; \
esac
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/ro.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/ro.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/ru.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/ru.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/sl.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/sl.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/sr.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/sr.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/sr@latin.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/sr@latin.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/sv.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/sv.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
make[1]: Leaving directory '/home/johny/webkitgtk/src/build-gtk'
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/ta.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/ta.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/te.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/te.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/uk.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/uk.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/vi.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/vi.po
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
test -d Source/WebCore/platform/gtk/po/ || mkdir -p Source/WebCore/platform/gtk/po/
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/zh_CN.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/zh_CN.po
/usr/bin/msgfmt -c -o Source/WebCore/platform/gtk/po/zh_TW.mo /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/gtk/po/zh_TW.po
  GEN      DerivedSources/webkitdom/WebKitDOMBatteryManager.h
  GEN      DerivedSources/webkitdom/WebKitDOMCSSRule.h
  GEN      DerivedSources/webkitdom/WebKitDOMCSSRuleList.h
  GEN      DerivedSources/webkitdom/WebKitDOMCSSStyleDeclaration.h
  GEN      DerivedSources/webkitdom/WebKitDOMCSSStyleSheet.h
  GEN      DerivedSources/webkitdom/WebKitDOMCSSValue.h
  GEN      DerivedSources/webkitdom/WebKitDOMMediaController.h
  GEN      DerivedSources/webkitdom/WebKitDOMMediaList.h
  GEN      DerivedSources/webkitdom/WebKitDOMMediaQueryList.h
  GEN      DerivedSources/webkitdom/WebKitDOMStyleMedia.h
  GEN      DerivedSources/webkitdom/WebKitDOMStyleSheet.h
  GEN      DerivedSources/webkitdom/WebKitDOMStyleSheetList.h
  GEN      DerivedSources/webkitdom/WebKitDOMAttr.h
  GEN      DerivedSources/webkitdom/WebKitDOMCDATASection.h
  GEN      DerivedSources/webkitdom/WebKitDOMCharacterData.h
  GEN      DerivedSources/webkitdom/WebKitDOMComment.h
  GEN      DerivedSources/webkitdom/WebKitDOMDocument.h
  GEN      DerivedSources/webkitdom/WebKitDOMDocumentFragment.h
  GEN      DerivedSources/webkitdom/WebKitDOMDocumentType.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMImplementation.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMNamedFlowCollection.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMSettableTokenList.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMSecurityPolicy.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMStringList.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMStringMap.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMTokenList.h
  GEN      DerivedSources/webkitdom/WebKitDOMElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMEntityReference.h
  GEN      DerivedSources/webkitdom/WebKitDOMEvent.h
  GEN      DerivedSources/webkitdom/WebKitDOMKeyboardEvent.h
  GEN      DerivedSources/webkitdom/WebKitDOMMessagePort.h
  GEN      DerivedSources/webkitdom/WebKitDOMMouseEvent.h
  GEN      DerivedSources/webkitdom/WebKitDOMNamedNodeMap.h
  GEN      DerivedSources/webkitdom/WebKitDOMNode.h
  GEN      DerivedSources/webkitdom/WebKitDOMNodeFilter.h
  GEN      DerivedSources/webkitdom/WebKitDOMNodeIterator.h
  GEN      DerivedSources/webkitdom/WebKitDOMNodeList.h
  GEN      DerivedSources/webkitdom/WebKitDOMProcessingInstruction.h
  GEN      DerivedSources/webkitdom/WebKitDOMRange.h
  GEN      DerivedSources/webkitdom/WebKitDOMText.h
  GEN      DerivedSources/webkitdom/WebKitDOMTouch.h
  GEN      DerivedSources/webkitdom/WebKitDOMTreeWalker.h
  GEN      DerivedSources/webkitdom/WebKitDOMUIEvent.h
  GEN      DerivedSources/webkitdom/WebKitDOMBlob.h
  GEN      DerivedSources/webkitdom/WebKitDOMFile.h
  GEN      DerivedSources/webkitdom/WebKitDOMFileList.h
  GEN      DerivedSources/webkitdom/WebKitDOMGamepad.h
  GEN      DerivedSources/webkitdom/WebKitDOMGamepadList.h
  GEN      DerivedSources/webkitdom/WebKitDOMGeolocation.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLAnchorElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLAppletElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLAreaElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLBaseElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLBaseFontElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLBodyElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLBRElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLButtonElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLCanvasElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLCollection.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLDirectoryElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLDivElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLDListElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLDocument.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLDetailsElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLEmbedElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLFieldSetElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLFontElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLFormElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLFrameElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLFrameSetElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLHeadElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLHeadingElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLHRElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLHtmlElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLIFrameElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLImageElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLInputElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLKeygenElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLLabelElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLLegendElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLLIElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLLinkElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLMapElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLMarqueeElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLMediaElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLMenuElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLMetaElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLModElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLObjectElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLOListElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLOptGroupElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLOptionElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLOptionsCollection.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLParagraphElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLParamElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLPreElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLQuoteElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLScriptElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLSelectElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLStyleElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLTableElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLTableCaptionElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLTableColElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLTableSectionElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLTableCellElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLTextAreaElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLTitleElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLTableRowElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLUListElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMMediaError.h
  GEN      DerivedSources/webkitdom/WebKitDOMTimeRanges.h
  GEN      DerivedSources/webkitdom/WebKitDOMValidityState.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMApplicationCache.h
  GEN      DerivedSources/webkitdom/WebKitDOMBarProp.h
  GEN      DerivedSources/webkitdom/WebKitDOMConsole.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMWindowCSS.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMWindow.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMSelection.h
  GEN      DerivedSources/webkitdom/WebKitDOMHistory.h
  GEN      DerivedSources/webkitdom/WebKitDOMLocation.h
  GEN      DerivedSources/webkitdom/WebKitDOMNavigator.h
  GEN      DerivedSources/webkitdom/WebKitDOMScreen.h
  GEN      DerivedSources/webkitdom/WebKitDOMShadowRoot.h
  GEN      DerivedSources/webkitdom/WebKitDOMWebKitPoint.h
  GEN      DerivedSources/webkitdom/WebKitDOMWebKitNamedFlow.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMMimeType.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMMimeTypeArray.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMPlugin.h
  GEN      DerivedSources/webkitdom/WebKitDOMDOMPluginArray.h
  GEN      DerivedSources/webkitdom/WebKitDOMDatabase.h
  GEN      DerivedSources/webkitdom/WebKitDOMStorage.h
  GEN      DerivedSources/webkitdom/WebKitDOMStorageInfo.h
  GEN      DerivedSources/webkitdom/WebKitDOMStorageQuota.h
  GEN      DerivedSources/webkitdom/WebKitDOMXPathExpression.h
  GEN      DerivedSources/webkitdom/WebKitDOMXPathNSResolver.h
  GEN      DerivedSources/webkitdom/WebKitDOMXPathResult.h
  GEN      DerivedSources/webkitdom/WebKitDOMPerformance.h
  GEN      DerivedSources/webkitdom/WebKitDOMPerformanceEntry.h
  GEN      DerivedSources/webkitdom/WebKitDOMPerformanceEntryList.h
  GEN      DerivedSources/webkitdom/WebKitDOMPerformanceNavigation.h
  GEN      DerivedSources/webkitdom/WebKitDOMPerformanceTiming.h
  GEN      DerivedSources/webkitdom/WebKitDOMWheelEvent.h
  GEN      DerivedSources/webkitdom/WebKitDOMAudioTrack.h
  GEN      DerivedSources/webkitdom/WebKitDOMAudioTrackList.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLAudioElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMHTMLVideoElement.h
  GEN      DerivedSources/webkitdom/WebKitDOMTextTrack.h
  GEN      DerivedSources/webkitdom/WebKitDOMTextTrackList.h
  GEN      DerivedSources/webkitdom/WebKitDOMTextTrackCue.h
  GEN      DerivedSources/webkitdom/WebKitDOMTextTrackCueList.h
  GEN      DerivedSources/webkitdom/WebKitDOMTrackEvent.h
  GEN      DerivedSources/webkitdom/WebKitDOMVideoPlaybackQuality.h
  GEN      DerivedSources/webkitdom/WebKitDOMVideoTrack.h
  GEN      DerivedSources/webkitdom/WebKitDOMVideoTrackList.h
  CXX      Source/JavaScriptCore/llint/Programs_LLIntOffsetsExtractor-LLIntOffsetsExtractor.o
  CXX      Source/WTF/wtf/libWTF_la-Assertions.lo
  CXX      Source/WTF/wtf/libWTF_la-Atomics.lo
  CXX      Source/WTF/wtf/libWTF_la-BitVector.lo
  CXX      Source/WTF/wtf/libWTF_la-CompilationThread.lo
  CXX      Source/WTF/wtf/libWTF_la-Compression.lo
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/config.h:57,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/Compression.cpp:26:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'const WTF::Checked<T, OverflowHandler> WTF::Checked<T, OverflowHandler>::operator*=(U) [with U = unsigned int; T = long unsigned int; OverflowHandler = WTF::RecordOverflow]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/Compression.cpp:41:18:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:567:17: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int, WTF::RecordOverflow>::Checked(const WTF::Checked<long unsigned int, WTF::RecordOverflow>&)' is deprecated [-Wdeprecated-copy]
  567 |         return *this;
      |                 ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int, WTF::RecordOverflow>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::RecordOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
  CXX      Source/WTF/wtf/libWTF_la-CryptographicallyRandomNumber.lo
  CXX      Source/WTF/wtf/libWTF_la-CurrentTime.lo
  CXX      Source/WTF/wtf/libWTF_la-DataLog.lo
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CurrentTime.cpp: In function 'double WTF::currentTime()':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CurrentTime.cpp:229:14: warning: 'GTimeVal' is deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
  229 |     GTimeVal now;
      |              ^~~
In file included from /usr/include/glib-2.0/glib/galloca.h:32,
                 from /usr/include/glib-2.0/glib.h:30,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CurrentTime.cpp:59:
/usr/include/glib-2.0/glib/gtypes.h:549:26: note: declared here
  549 | typedef struct _GTimeVal GTimeVal GLIB_DEPRECATED_TYPE_IN_2_62_FOR(GDateTime);
      |                          ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CurrentTime.cpp:230:28: warning: 'void g_get_current_time(GTimeVal*)' is deprecated: Use 'g_get_real_time' instead [-Wdeprecated-declarations]
  230 |     g_get_current_time(&now);
      |                            ^
In file included from /usr/include/glib-2.0/glib/giochannel.h:33,
                 from /usr/include/glib-2.0/glib.h:54,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CurrentTime.cpp:59:
/usr/include/glib-2.0/glib/gmain.h:575:8: note: declared here
  575 | void   g_get_current_time                 (GTimeVal       *result);
      |        ^~~~~~~~~~~~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CurrentTime.cpp:230:28: warning: 'void g_get_current_time(GTimeVal*)' is deprecated: Use 'g_get_real_time' instead [-Wdeprecated-declarations]
  230 |     g_get_current_time(&now);
      |                            ^
In file included from /usr/include/glib-2.0/glib/giochannel.h:33,
                 from /usr/include/glib-2.0/glib.h:54,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CurrentTime.cpp:59:
/usr/include/glib-2.0/glib/gmain.h:575:8: note: declared here
  575 | void   g_get_current_time                 (GTimeVal       *result);
      |        ^~~~~~~~~~~~~~~~~~
  CXX      Source/WTF/wtf/libWTF_la-DateMath.lo
  CXX      Source/WTF/wtf/libWTF_la-DecimalNumber.lo
  CXX      Source/WTF/wtf/libWTF_la-DynamicAnnotations.lo
  CXX      Source/WTF/wtf/libWTF_la-FastBitVector.lo
  CXX      Source/WTF/wtf/libWTF_la-FastMalloc.lo
  CXX      Source/WTF/wtf/libWTF_la-FilePrintStream.lo
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.cpp: In member function 'WTF::Span* WTF::Span::next(uintptr_t) const':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.cpp:563:188: warning: type qualifiers ignored on cast result type [-Wignored-qualifiers]
  563 | #define XOR_MASK_PTR_WITH_KEY(ptr, key, entropy) (reinterpret_cast<__typeof__(ptr)>(reinterpret_cast<uintptr_t>(ptr)^(ROTATE_VALUE(reinterpret_cast<uintptr_t>(key), MaskKeyShift)^entropy)))
      |                                                                                                                                                                                            ^
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.cpp:1190:48: note: in expansion of macro 'XOR_MASK_PTR_WITH_KEY'
 1190 |   Span* next(uintptr_t entropy) const { return XOR_MASK_PTR_WITH_KEY(m_next, this, entropy); }
      |                                                ^~~~~~~~~~~~~~~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.cpp: In member function 'WTF::Span* WTF::Span::remoteNext(const WTF::Span*, uintptr_t) const':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.cpp:563:188: warning: type qualifiers ignored on cast result type [-Wignored-qualifiers]
  563 | #define XOR_MASK_PTR_WITH_KEY(ptr, key, entropy) (reinterpret_cast<__typeof__(ptr)>(reinterpret_cast<uintptr_t>(ptr)^(ROTATE_VALUE(reinterpret_cast<uintptr_t>(key), MaskKeyShift)^entropy)))
      |                                                                                                                                                                                            ^
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.cpp:1191:85: note: in expansion of macro 'XOR_MASK_PTR_WITH_KEY'
 1191 |   Span* remoteNext(const Span* remoteSpanPointer, uintptr_t entropy) const { return XOR_MASK_PTR_WITH_KEY(m_next, remoteSpanPointer, entropy); }
      |                                                                                     ^~~~~~~~~~~~~~~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.cpp: In member function 'WTF::Span* WTF::Span::prev(uintptr_t) const':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.cpp:563:188: warning: type qualifiers ignored on cast result type [-Wignored-qualifiers]
  563 | #define XOR_MASK_PTR_WITH_KEY(ptr, key, entropy) (reinterpret_cast<__typeof__(ptr)>(reinterpret_cast<uintptr_t>(ptr)^(ROTATE_VALUE(reinterpret_cast<uintptr_t>(key), MaskKeyShift)^entropy)))
      |                                                                                                                                                                                            ^
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.cpp:1192:48: note: in expansion of macro 'XOR_MASK_PTR_WITH_KEY'
 1192 |   Span* prev(uintptr_t entropy) const { return XOR_MASK_PTR_WITH_KEY(m_prev, this, entropy); }
      |                                                ^~~~~~~~~~~~~~~~~~~~~
  CXX      Source/WTF/wtf/libWTF_la-FunctionDispatcher.lo
  CXX      Source/WTF/wtf/libWTF_la-GregorianDateTime.lo
  CXX      Source/WTF/wtf/libWTF_la-HashTable.lo
  CXX      Source/WTF/wtf/libWTF_la-MD5.lo
  CXX      Source/WTF/wtf/libWTF_la-MainThread.lo
  CXX      Source/WTF/wtf/libWTF_la-MediaTime.lo
  CXX      Source/WTF/wtf/libWTF_la-MetaAllocator.lo
  CXX      Source/WTF/wtf/libWTF_la-NumberOfCores.lo
  CXX      Source/WTF/wtf/libWTF_la-RAMSize.lo
  CXX      Source/WTF/wtf/libWTF_la-OSAllocatorPosix.lo
  CXX      Source/WTF/wtf/libWTF_la-OSAllocatorWin.lo
  CXX      Source/WTF/wtf/libWTF_la-OSRandomSource.lo
  CXX      Source/WTF/wtf/libWTF_la-PageAllocationAligned.lo
  CXX      Source/WTF/wtf/libWTF_la-PageBlock.lo
  CXX      Source/WTF/wtf/libWTF_la-ParallelJobsGeneric.lo
  CXX      Source/WTF/wtf/libWTF_la-PrintStream.lo
  CXX      Source/WTF/wtf/libWTF_la-RandomNumber.lo
  CXX      Source/WTF/wtf/libWTF_la-RefCountedLeakCounter.lo
  CXX      Source/WTF/wtf/libWTF_la-RunLoop.lo
  CXX      Source/WTF/wtf/libWTF_la-SHA1.lo
  CXX      Source/WTF/wtf/libWTF_la-SixCharacterHash.lo
  CXX      Source/WTF/wtf/libWTF_la-StackBounds.lo
  CXX      Source/WTF/wtf/libWTF_la-StringPrintStream.lo
  CXX      Source/WTF/wtf/libWTF_la-TCSystemAlloc.lo
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/TCSystemAlloc.cpp: In function 'void* TryMmap(size_t, size_t*, size_t)':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/TCSystemAlloc.cpp:176:48: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
  176 |   mmap(static_cast<char*>(result) + (mapSize - pagesize).unsafeGet(), pagesize, PROT_NONE, MAP_FIXED | MAP_PRIVATE | MAP_ANON, VM_TAG_FOR_TCMALLOC_MEMORY, 0);
      |                                                ^~~~~~~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/config.h:57,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/TCSystemAlloc.cpp:33:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:683:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator-(WTF::Checked<U, OverflowHandler>, V) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  683 | template <typename U, typename V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator-(Checked<U, OverflowHandler> lhs, V rhs)
      |                                                                                                                                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, V) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/TCSystemAlloc.cpp:166:53:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:680:16: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
  680 |     return lhs + Checked<V, OverflowHandler>(rhs);
      |            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:642:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  642 | template <typename U, typename V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator+(Checked<U, OverflowHandler> lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator-(WTF::Checked<U, OverflowHandler>, V) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/TCSystemAlloc.cpp:176:48:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:685:16: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
  685 |     return lhs - Checked<V, OverflowHandler>(rhs);
      |            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:654:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator-(WTF::Checked<U, OverflowHandler>, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  654 | template <typename U, typename V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator-(Checked<U, OverflowHandler> lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
  CXX      Source/WTF/wtf/libWTF_la-ThreadIdentifierDataPthreads.lo
  CXX      Source/WTF/wtf/libWTF_la-ThreadSpecificWin.lo
  CXX      Source/WTF/wtf/libWTF_la-Threading.lo
  CXX      Source/WTF/wtf/libWTF_la-ThreadingPthreads.lo
  CXX      Source/WTF/wtf/libWTF_la-ThreadingWin.lo
  CXX      Source/WTF/wtf/libWTF_la-WTFThreadData.lo
  CXX      Source/WTF/wtf/libWTF_la-dtoa.lo
  CXX      Source/WTF/wtf/dtoa/libWTF_la-bignum-dtoa.lo
  CXX      Source/WTF/wtf/dtoa/libWTF_la-bignum.lo
  CXX      Source/WTF/wtf/dtoa/libWTF_la-cached-powers.lo
  CXX      Source/WTF/wtf/dtoa/libWTF_la-diy-fp.lo
  CXX      Source/WTF/wtf/dtoa/libWTF_la-double-conversion.lo
  CXX      Source/WTF/wtf/dtoa/libWTF_la-fast-dtoa.lo
  CXX      Source/WTF/wtf/dtoa/libWTF_la-fixed-dtoa.lo
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc: In function 'void WTF::double_conversion::BiggestPowerTen(uint32_t, int, uint32_t*, int*)':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:252:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  252 |                 if (kTen9 <= number) {
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:258:13: note: here
  258 |             case 29:
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:261:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  261 |                 if (kTen8 <= number) {
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:267:13: note: here
  267 |             case 26:
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:270:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  270 |                 if (kTen7 <= number) {
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:276:13: note: here
  276 |             case 23:
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:280:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  280 |                 if (kTen6 <= number) {
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:286:13: note: here
  286 |             case 19:
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:289:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  289 |                 if (kTen5 <= number) {
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:295:13: note: here
  295 |             case 16:
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:298:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  298 |                 if (kTen4 <= number) {
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:304:13: note: here
  304 |             case 13:
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:308:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  308 |                 if (1000 <= number) {
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:314:13: note: here
  314 |             case 9:
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:317:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  317 |                 if (100 <= number) {
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:323:13: note: here
  323 |             case 6:
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:326:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  326 |                 if (10 <= number) {
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:332:13: note: here
  332 |             case 3:
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:335:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  335 |                 if (1 <= number) {
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/dtoa/fast-dtoa.cc:341:13: note: here
  341 |             case 0:
      |             ^~~~
  CXX      Source/WTF/wtf/dtoa/libWTF_la-strtod.lo
  CXX      Source/WTF/wtf/gobject/libWTF_la-GRefPtr.lo
  CXX      Source/WTF/wtf/gobject/libWTF_la-GlibUtilities.lo
  CXX      Source/WTF/wtf/gtk/libWTF_la-MainThreadGtk.lo
  CXX      Source/WTF/wtf/gtk/libWTF_la-RunLoopGtk.lo
  CXX      Source/WTF/wtf/text/libWTF_la-AtomicString.lo
  CXX      Source/WTF/wtf/text/libWTF_la-AtomicStringTable.lo
  CXX      Source/WTF/wtf/text/libWTF_la-Base64.lo
  CXX      Source/WTF/wtf/text/libWTF_la-CString.lo
  CXX      Source/WTF/wtf/text/libWTF_la-StringBuilder.lo
  CXX      Source/WTF/wtf/text/libWTF_la-StringImpl.lo
  CXX      Source/WTF/wtf/text/libWTF_la-StringStatics.lo
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/config.h:57,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/text/StringImpl.cpp:25:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(WTF::Checked<U, OverflowHandler>, V) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/text/StringBuffer.h:44:90:   required from 'WTF::StringBuffer<T>::StringBuffer(unsigned int) [with CharType = unsigned char]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/text/StringImpl.cpp:788:28:   required from 'WTF::PassRef<WTF::StringImpl> WTF::StringImpl::removeCharacters(const CharType*, WTF::CharacterMatchFunctionPtr) [with CharType = unsigned char; WTF::CharacterMatchFunctionPtr = bool (*)(char16_t); UChar = char16_t]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/text/StringImpl.cpp:812:57:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:690:16: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
  690 |     return lhs * Checked<V, OverflowHandler>(rhs);
      |            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:666:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(WTF::Checked<U, OverflowHandler>, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  666 |  typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator*(Checked<U, OverflowHandler> lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~

  CXX      Source/WTF/wtf/text/libWTF_la-WTFString.lo
  CXX      Source/WTF/wtf/threads/libWTF_la-BinarySemaphore.lo
  CXX      Source/WTF/wtf/unicode/libWTF_la-CollatorDefault.lo
  CXX      Source/WTF/wtf/unicode/libWTF_la-UTF8.lo
  CXX      Source/WTF/wtf/unicode/icu/libWTF_la-CollatorICU.lo
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp: In function 'WTF::Unicode::ConversionResult WTF::Unicode::convertLatin1ToUTF8(const LChar**, const LChar*, char**, char*)':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:159:16: warning: this statement may fall through [-Wimplicit-fallthrough=]
  159 |             ch >>= 6;
      |             ~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:161:9: note: here
  161 |         case 1:
      |         ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp: In function 'WTF::Unicode::ConversionResult WTF::Unicode::convertUTF16ToUTF8(const UChar**, const UChar*, char**, char*, bool)':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:234:72: warning: this statement may fall through [-Wimplicit-fallthrough=]
  234 |             case 4: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6; FALLTHROUGH;
      |                                                                     ~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:235:13: note: here
  235 |             case 3: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6; FALLTHROUGH;
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:235:72: warning: this statement may fall through [-Wimplicit-fallthrough=]
  235 |             case 3: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6; FALLTHROUGH;
      |                                                                     ~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:236:13: note: here
  236 |             case 2: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6; FALLTHROUGH;
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:236:72: warning: this statement may fall through [-Wimplicit-fallthrough=]
  236 |             case 2: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6; FALLTHROUGH;
      |                                                                     ~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:237:13: note: here
  237 |             case 1: *--target =  (char)(ch | firstByteMark[bytesToWrite]);
      |             ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp: In function 'bool WTF::Unicode::isLegalUTF8(const unsigned char*, int)':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:256:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  256 |         case 4: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return false; FALLTHROUGH;
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:257:9: note: here
  257 |         case 3: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return false; FALLTHROUGH;
      |         ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:257:17: warning: this statement may fall through [-Wimplicit-fallthrough=]
  257 |         case 3: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return false; FALLTHROUGH;
      |                 ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:258:9: note: here
  258 |         case 2: if ((a = (*--srcptr)) > 0xBF) return false;
      |         ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:260:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
  260 |         switch (*source) {
      |         ^~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:270:9: note: here
  270 |         case 1: if (*source >= 0x80 && *source < 0xC2) return false;
      |         ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp: In function 'UChar32 WTF::Unicode::readUTF8Sequence(const char*&, unsigned int)':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:288:81: warning: this statement may fall through [-Wimplicit-fallthrough=]
  288 |         case 6: character += static_cast<unsigned char>(*sequence++); character <<= 6; FALLTHROUGH;
      |                                                                       ~~~~~~~~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:289:9: note: here
  289 |         case 5: character += static_cast<unsigned char>(*sequence++); character <<= 6; FALLTHROUGH;
      |         ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:289:81: warning: this statement may fall through [-Wimplicit-fallthrough=]
  289 |         case 5: character += static_cast<unsigned char>(*sequence++); character <<= 6; FALLTHROUGH;
      |                                                                       ~~~~~~~~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:290:9: note: here
  290 |         case 4: character += static_cast<unsigned char>(*sequence++); character <<= 6; FALLTHROUGH;
      |         ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:290:81: warning: this statement may fall through [-Wimplicit-fallthrough=]
  290 |         case 4: character += static_cast<unsigned char>(*sequence++); character <<= 6; FALLTHROUGH;
      |                                                                       ~~~~~~~~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:291:9: note: here
  291 |         case 3: character += static_cast<unsigned char>(*sequence++); character <<= 6; FALLTHROUGH;
      |         ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:291:81: warning: this statement may fall through [-Wimplicit-fallthrough=]
  291 |         case 3: character += static_cast<unsigned char>(*sequence++); character <<= 6; FALLTHROUGH;
      |                                                                       ~~~~~~~~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:292:9: note: here
  292 |         case 2: character += static_cast<unsigned char>(*sequence++); character <<= 6; FALLTHROUGH;
      |         ^~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:292:81: warning: this statement may fall through [-Wimplicit-fallthrough=]
  292 |         case 2: character += static_cast<unsigned char>(*sequence++); character <<= 6; FALLTHROUGH;
      |                                                                       ~~~~~~~~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/unicode/UTF8.cpp:293:9: note: here
  293 |         case 1: character += static_cast<unsigned char>(*sequence++);
      |         ^~~~
  GEN      DerivedSources/WebCore/InspectorWebBackendDispatchers.cpp
  GEN      DerivedSources/WebCore/JSANGLEInstancedArrays.h
  GEN      DerivedSources/WebCore/JSAbstractWorker.h
  GEN      DerivedSources/WebCore/JSAllAudioCapabilities.h
  GEN      DerivedSources/WebCore/JSAllVideoCapabilities.h
  GEN      DerivedSources/WebCore/JSAttr.h
  GEN      DerivedSources/WebCore/JSAudioBuffer.h
  GEN      DerivedSources/WebCore/JSAudioBufferCallback.h
  GEN      DerivedSources/WebCore/JSAudioBufferSourceNode.h
  GEN      DerivedSources/WebCore/JSChannelMergerNode.h
  GEN      DerivedSources/WebCore/JSChannelSplitterNode.h
  GEN      DerivedSources/WebCore/JSAudioContext.h
  GEN      DerivedSources/WebCore/JSAudioDestinationNode.h
  GEN      DerivedSources/WebCore/JSGainNode.h
  GEN      DerivedSources/WebCore/JSAudioListener.h
  GEN      DerivedSources/WebCore/JSAudioNode.h
  GEN      DerivedSources/WebCore/JSPannerNode.h
  GEN      DerivedSources/WebCore/JSAudioParam.h
  GEN      DerivedSources/WebCore/JSAudioProcessingEvent.h
  GEN      DerivedSources/WebCore/JSAudioStreamTrack.h
  GEN      DerivedSources/WebCore/JSAudioTrack.h
  GEN      DerivedSources/WebCore/JSAudioTrackList.h
  GEN      DerivedSources/WebCore/JSBarProp.h
  GEN      DerivedSources/WebCore/JSBatteryManager.h
  GEN      DerivedSources/WebCore/JSBeforeLoadEvent.h
  GEN      DerivedSources/WebCore/JSBeforeUnloadEvent.h
  GEN      DerivedSources/WebCore/JSBiquadFilterNode.h
  GEN      DerivedSources/WebCore/JSBlob.h
  GEN      DerivedSources/WebCore/JSCanvasGradient.h
  GEN      DerivedSources/WebCore/JSCanvasPattern.h
  GEN      DerivedSources/WebCore/JSCanvasProxy.h
  GEN      DerivedSources/WebCore/JSCanvasRenderingContext2D.h
  GEN      DerivedSources/WebCore/JSCanvasRenderingContext.h
  GEN      DerivedSources/WebCore/JSCapabilityRange.h
  GEN      DerivedSources/WebCore/JSCDATASection.h
  GEN      DerivedSources/WebCore/JSCharacterData.h
  GEN      DerivedSources/WebCore/JSClientRect.h
  GEN      DerivedSources/WebCore/JSClientRectList.h
  GEN      DerivedSources/WebCore/JSClipboard.h
  GEN      DerivedSources/WebCore/JSCloseEvent.h
  GEN      DerivedSources/WebCore/JSCommandLineAPIHost.h
  GEN      DerivedSources/WebCore/JSComment.h
  GEN      DerivedSources/WebCore/JSCompositionEvent.h
  GEN      DerivedSources/WebCore/JSConsole.h
  GEN      DerivedSources/WebCore/JSConvolverNode.h
  GEN      DerivedSources/WebCore/JSCoordinates.h
  GEN      DerivedSources/WebCore/JSCounter.h
  GEN      DerivedSources/WebCore/JSCrypto.h
  GEN      DerivedSources/WebCore/JSCSSCharsetRule.h
  GEN      DerivedSources/WebCore/JSCSSFontFaceLoadEvent.h
  GEN      DerivedSources/WebCore/JSCSSFontFaceRule.h
  GEN      DerivedSources/WebCore/JSCSSHostRule.h
  GEN      DerivedSources/WebCore/JSCSSImportRule.h
  GEN      DerivedSources/WebCore/JSCSSMediaRule.h
  GEN      DerivedSources/WebCore/JSCSSPageRule.h
  GEN      DerivedSources/WebCore/JSCSSPrimitiveValue.h
  GEN      DerivedSources/WebCore/JSCSSRule.h
  GEN      DerivedSources/WebCore/JSCSSRuleList.h
  GEN      DerivedSources/WebCore/JSCSSStyleDeclaration.h
  GEN      DerivedSources/WebCore/JSCSSStyleRule.h
  GEN      DerivedSources/WebCore/JSCSSStyleSheet.h
  GEN      DerivedSources/WebCore/JSCSSSupportsRule.h
  GEN      DerivedSources/WebCore/JSCSSValue.h
  GEN      DerivedSources/WebCore/JSCSSValueList.h
  GEN      DerivedSources/WebCore/JSCryptoKey.h
  GEN      DerivedSources/WebCore/JSCryptoKeyPair.h
  GEN      DerivedSources/WebCore/JSCustomEvent.h
  GEN      DerivedSources/WebCore/JSDatabase.h
  GEN      DerivedSources/WebCore/JSDatabaseCallback.h
  GEN      DerivedSources/WebCore/JSDatabaseSync.h
  GEN      DerivedSources/WebCore/JSDataTransferItem.h
  GEN      DerivedSources/WebCore/JSDataTransferItemList.h
  GEN      DerivedSources/WebCore/JSDedicatedWorkerGlobalScope.h
  GEN      DerivedSources/WebCore/JSDelayNode.h
  GEN      DerivedSources/WebCore/JSDeviceMotionEvent.h
  GEN      DerivedSources/WebCore/JSDeviceOrientationEvent.h
  GEN      DerivedSources/WebCore/JSDocument.h
  GEN      DerivedSources/WebCore/JSDocumentFragment.h
  GEN      DerivedSources/WebCore/JSDocumentType.h
  GEN      DerivedSources/WebCore/JSDOMApplicationCache.h
  GEN      DerivedSources/WebCore/JSDOMCoreException.h
  GEN      DerivedSources/WebCore/JSDOMError.h
  GEN      DerivedSources/WebCore/JSDOMFormData.h
  GEN      DerivedSources/WebCore/JSDOMImplementation.h
  GEN      DerivedSources/WebCore/JSDOMMimeTypeArray.h
  GEN      DerivedSources/WebCore/JSDOMMimeType.h
  GEN      DerivedSources/WebCore/JSDOMNamedFlowCollection.h
  GEN      DerivedSources/WebCore/JSDOMPath.h
  GEN      DerivedSources/WebCore/JSDOMParser.h
  GEN      DerivedSources/WebCore/JSDOMPluginArray.h
  GEN      DerivedSources/WebCore/JSDOMPlugin.h
  GEN      DerivedSources/WebCore/JSDOMSecurityPolicy.h
  GEN      DerivedSources/WebCore/JSDOMSelection.h
  GEN      DerivedSources/WebCore/JSDOMSettableTokenList.h
  GEN      DerivedSources/WebCore/JSDOMStringList.h
  GEN      DerivedSources/WebCore/JSDOMStringMap.h
  GEN      DerivedSources/WebCore/JSDOMTokenList.h
  GEN      DerivedSources/WebCore/JSDOMURL.h
  GEN      DerivedSources/WebCore/JSDOMWindow.h
  GEN      DerivedSources/WebCore/JSDOMWindowCSS.h
  GEN      DerivedSources/WebCore/JSDynamicsCompressorNode.h
  GEN      DerivedSources/WebCore/JSElement.h
  GEN      DerivedSources/WebCore/JSEntity.h
  GEN      DerivedSources/WebCore/JSEntityReference.h
  GEN      DerivedSources/WebCore/JSErrorEvent.h
  GEN      DerivedSources/WebCore/JSEXTDrawBuffers.h
  GEN      DerivedSources/WebCore/JSEXTTextureFilterAnisotropic.h
  GEN      DerivedSources/WebCore/JSEvent.h
  GEN      DerivedSources/WebCore/JSEventException.h
  GEN      DerivedSources/WebCore/JSEventSource.h
  GEN      DerivedSources/WebCore/JSEventTarget.h
  GEN      DerivedSources/WebCore/JSFile.h
  GEN      DerivedSources/WebCore/JSFileError.h
  GEN      DerivedSources/WebCore/JSFileException.h
  GEN      DerivedSources/WebCore/JSFileList.h
  GEN      DerivedSources/WebCore/JSFileReader.h
  GEN      DerivedSources/WebCore/JSFileReaderSync.h
  GEN      DerivedSources/WebCore/JSFocusEvent.h
  GEN      DerivedSources/WebCore/JSFontLoader.h
  GEN      DerivedSources/WebCore/JSGamepad.h
  GEN      DerivedSources/WebCore/JSGamepadList.h
  GEN      DerivedSources/WebCore/JSGeolocation.h
  GEN      DerivedSources/WebCore/JSGeoposition.h
  GEN      DerivedSources/WebCore/JSHashChangeEvent.h
  GEN      DerivedSources/WebCore/JSHistory.h
  GEN      DerivedSources/WebCore/JSHTMLAllCollection.h
  GEN      DerivedSources/WebCore/JSHTMLAnchorElement.h
  GEN      DerivedSources/WebCore/JSHTMLAppletElement.h
  GEN      DerivedSources/WebCore/JSHTMLAreaElement.h
  GEN      DerivedSources/WebCore/JSHTMLAudioElement.h
  GEN      DerivedSources/WebCore/JSHTMLBaseElement.h
  GEN      DerivedSources/WebCore/JSHTMLBaseFontElement.h
  GEN      DerivedSources/WebCore/JSHTMLBodyElement.h
  GEN      DerivedSources/WebCore/JSHTMLBRElement.h
  GEN      DerivedSources/WebCore/JSHTMLButtonElement.h
  GEN      DerivedSources/WebCore/JSHTMLCanvasElement.h
  GEN      DerivedSources/WebCore/JSHTMLCollection.h
  GEN      DerivedSources/WebCore/JSHTMLDataListElement.h
  GEN      DerivedSources/WebCore/JSHTMLDetailsElement.h
  GEN      DerivedSources/WebCore/JSHTMLDivElement.h
  GEN      DerivedSources/WebCore/JSHTMLDirectoryElement.h
  GEN      DerivedSources/WebCore/JSHTMLDListElement.h
  GEN      DerivedSources/WebCore/JSHTMLDocument.h
  GEN      DerivedSources/WebCore/JSHTMLElement.h
  GEN      DerivedSources/WebCore/JSHTMLEmbedElement.h
  GEN      DerivedSources/WebCore/JSHTMLFieldSetElement.h
  GEN      DerivedSources/WebCore/JSHTMLFontElement.h
  GEN      DerivedSources/WebCore/JSHTMLFormControlsCollection.h
  GEN      DerivedSources/WebCore/JSHTMLFormElement.h
  GEN      DerivedSources/WebCore/JSHTMLFrameElement.h
  GEN      DerivedSources/WebCore/JSHTMLFrameSetElement.h
  GEN      DerivedSources/WebCore/JSHTMLHeadElement.h
  GEN      DerivedSources/WebCore/JSHTMLHeadingElement.h
  GEN      DerivedSources/WebCore/JSHTMLHRElement.h
  GEN      DerivedSources/WebCore/JSHTMLHtmlElement.h
  GEN      DerivedSources/WebCore/JSHTMLIFrameElement.h
  GEN      DerivedSources/WebCore/JSHTMLImageElement.h
  GEN      DerivedSources/WebCore/JSHTMLInputElement.h
  GEN      DerivedSources/WebCore/JSHTMLKeygenElement.h
  GEN      DerivedSources/WebCore/JSHTMLLabelElement.h
  GEN      DerivedSources/WebCore/JSHTMLLegendElement.h
  GEN      DerivedSources/WebCore/JSHTMLLIElement.h
  GEN      DerivedSources/WebCore/JSHTMLLinkElement.h
  GEN      DerivedSources/WebCore/JSHTMLMapElement.h
  GEN      DerivedSources/WebCore/JSHTMLMarqueeElement.h
  GEN      DerivedSources/WebCore/JSHTMLMediaElement.h
  GEN      DerivedSources/WebCore/JSHTMLMediaElementMediaStream.h
  GEN      DerivedSources/WebCore/JSHTMLMenuElement.h
  GEN      DerivedSources/WebCore/JSHTMLMetaElement.h
  GEN      DerivedSources/WebCore/JSHTMLMeterElement.h
  GEN      DerivedSources/WebCore/JSHTMLModElement.h
  GEN      DerivedSources/WebCore/JSHTMLObjectElement.h
  GEN      DerivedSources/WebCore/JSHTMLOListElement.h
  GEN      DerivedSources/WebCore/JSHTMLOptGroupElement.h
  GEN      DerivedSources/WebCore/JSHTMLOptionElement.h
  GEN      DerivedSources/WebCore/JSHTMLOptionsCollection.h
  GEN      DerivedSources/WebCore/JSHTMLOutputElement.h
  GEN      DerivedSources/WebCore/JSHTMLParagraphElement.h
  GEN      DerivedSources/WebCore/JSHTMLParamElement.h
  GEN      DerivedSources/WebCore/JSHTMLPreElement.h
  GEN      DerivedSources/WebCore/JSHTMLProgressElement.h
  GEN      DerivedSources/WebCore/JSHTMLQuoteElement.h
  GEN      DerivedSources/WebCore/JSHTMLScriptElement.h
  GEN      DerivedSources/WebCore/JSHTMLSelectElement.h
  GEN      DerivedSources/WebCore/JSHTMLSourceElement.h
  GEN      DerivedSources/WebCore/JSHTMLSpanElement.h
  GEN      DerivedSources/WebCore/JSHTMLStyleElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableCaptionElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableCellElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableColElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableRowElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableSectionElement.h
  GEN      DerivedSources/WebCore/JSHTMLTemplateElement.h
  GEN      DerivedSources/WebCore/JSHTMLTextAreaElement.h
  GEN      DerivedSources/WebCore/JSHTMLTitleElement.h
  GEN      DerivedSources/WebCore/JSHTMLTrackElement.h
  GEN      DerivedSources/WebCore/JSHTMLUnknownElement.h
  GEN      DerivedSources/WebCore/JSHTMLUListElement.h
  GEN      DerivedSources/WebCore/JSHTMLVideoElement.h
  GEN      DerivedSources/WebCore/JSIDBAny.h
  GEN      DerivedSources/WebCore/JSIDBCursor.h
  GEN      DerivedSources/WebCore/JSIDBCursorWithValue.h
  GEN      DerivedSources/WebCore/JSIDBDatabase.h
  GEN      DerivedSources/WebCore/JSIDBFactory.h
  GEN      DerivedSources/WebCore/JSIDBIndex.h
  GEN      DerivedSources/WebCore/JSIDBKeyRange.h
  GEN      DerivedSources/WebCore/JSIDBObjectStore.h
  GEN      DerivedSources/WebCore/JSIDBOpenDBRequest.h
  GEN      DerivedSources/WebCore/JSIDBRequest.h
  GEN      DerivedSources/WebCore/JSIDBTransaction.h
  GEN      DerivedSources/WebCore/JSIDBVersionChangeEvent.h
  GEN      DerivedSources/WebCore/JSImageData.h
  GEN      DerivedSources/WebCore/JSInspectorFrontendHost.h
  GEN      DerivedSources/WebCore/JSScriptProcessorNode.h
  GEN      DerivedSources/WebCore/JSKeyboardEvent.h
  GEN      DerivedSources/WebCore/JSLocation.h
  GEN      DerivedSources/WebCore/JSMediaController.h
  GEN      DerivedSources/WebCore/JSMediaElementAudioSourceNode.h
  GEN      DerivedSources/WebCore/JSMediaError.h
  GEN      DerivedSources/WebCore/JSMediaList.h
  GEN      DerivedSources/WebCore/JSMediaSource.h
  GEN      DerivedSources/WebCore/JSMediaSourceStates.h
  GEN      DerivedSources/WebCore/JSMediaStream.h
  GEN      DerivedSources/WebCore/JSMediaStreamAudioSourceNode.h
  GEN      DerivedSources/WebCore/JSMediaStreamAudioDestinationNode.h
  GEN      DerivedSources/WebCore/JSMediaStreamCapabilities.h
  GEN      DerivedSources/WebCore/JSMediaStreamEvent.h
  GEN      DerivedSources/WebCore/JSMediaStreamTrack.h
  GEN      DerivedSources/WebCore/JSMediaStreamTrackEvent.h
  GEN      DerivedSources/WebCore/JSMediaStreamTrackSourcesCallback.h
  GEN      DerivedSources/WebCore/JSMediaQueryList.h
  GEN      DerivedSources/WebCore/JSMediaQueryListListener.h
  GEN      DerivedSources/WebCore/JSMediaTrackConstraint.h
  GEN      DerivedSources/WebCore/JSMediaTrackConstraints.h
  GEN      DerivedSources/WebCore/JSMediaTrackConstraintSet.h
  GEN      DerivedSources/WebCore/JSMessageChannel.h
  GEN      DerivedSources/WebCore/JSMessageEvent.h
  GEN      DerivedSources/WebCore/JSMessagePort.h
  GEN      DerivedSources/WebCore/JSMouseEvent.h
  GEN      DerivedSources/WebCore/JSMutationEvent.h
  GEN      DerivedSources/WebCore/JSMutationObserver.h
  GEN      DerivedSources/WebCore/JSMutationRecord.h
  GEN      DerivedSources/WebCore/JSNamedNodeMap.h
  GEN      DerivedSources/WebCore/JSNavigator.h
  GEN      DerivedSources/WebCore/JSNavigatorUserMediaError.h
  GEN      DerivedSources/WebCore/JSNavigatorUserMediaErrorCallback.h
  GEN      DerivedSources/WebCore/JSNavigatorUserMediaSuccessCallback.h
  GEN      DerivedSources/WebCore/JSNode.h
  GEN      DerivedSources/WebCore/JSNodeFilter.h
  GEN      DerivedSources/WebCore/JSNodeIterator.h
  GEN      DerivedSources/WebCore/JSNodeList.h
  GEN      DerivedSources/WebCore/JSNotation.h
  GEN      DerivedSources/WebCore/JSNotificationCenter.h
  GEN      DerivedSources/WebCore/JSNotification.h
  GEN      DerivedSources/WebCore/JSNotificationPermissionCallback.h
  GEN      DerivedSources/WebCore/JSOESStandardDerivatives.h
  GEN      DerivedSources/WebCore/JSOESTextureFloat.h
  GEN      DerivedSources/WebCore/JSOESTextureFloatLinear.h
  GEN      DerivedSources/WebCore/JSOESTextureHalfFloat.h
  GEN      DerivedSources/WebCore/JSOESTextureHalfFloatLinear.h
  GEN      DerivedSources/WebCore/JSOESVertexArrayObject.h
  GEN      DerivedSources/WebCore/JSOESElementIndexUint.h
  GEN      DerivedSources/WebCore/JSOfflineAudioContext.h
  GEN      DerivedSources/WebCore/JSOfflineAudioCompletionEvent.h
  GEN      DerivedSources/WebCore/JSOscillatorNode.h
  GEN      DerivedSources/WebCore/JSOverflowEvent.h
  GEN      DerivedSources/WebCore/JSPageTransitionEvent.h
  GEN      DerivedSources/WebCore/JSPerformance.h
  GEN      DerivedSources/WebCore/JSPerformanceEntry.h
  GEN      DerivedSources/WebCore/JSPerformanceEntryList.h
  GEN      DerivedSources/WebCore/JSPerformanceMark.h
  GEN      DerivedSources/WebCore/JSPerformanceMeasure.h
  GEN      DerivedSources/WebCore/JSPerformanceNavigation.h
  GEN      DerivedSources/WebCore/JSPerformanceResourceTiming.h
  GEN      DerivedSources/WebCore/JSPerformanceTiming.h
  GEN      DerivedSources/WebCore/JSPopStateEvent.h
  GEN      DerivedSources/WebCore/JSPositionCallback.h
  GEN      DerivedSources/WebCore/JSPositionError.h
  GEN      DerivedSources/WebCore/JSPositionErrorCallback.h
  GEN      DerivedSources/WebCore/JSProcessingInstruction.h
  GEN      DerivedSources/WebCore/JSProgressEvent.h
  GEN      DerivedSources/WebCore/JSRadioNodeList.h
  GEN      DerivedSources/WebCore/JSRange.h
  GEN      DerivedSources/WebCore/JSRangeException.h
  GEN      DerivedSources/WebCore/JSAnalyserNode.h
  GEN      DerivedSources/WebCore/JSRect.h
  GEN      DerivedSources/WebCore/JSRequestAnimationFrameCallback.h
  GEN      DerivedSources/WebCore/JSRGBColor.h
  GEN      DerivedSources/WebCore/JSRTCDTMFSender.h
  GEN      DerivedSources/WebCore/JSRTCDTMFToneChangeEvent.h
  GEN      DerivedSources/WebCore/JSRTCDataChannel.h
  GEN      DerivedSources/WebCore/JSRTCDataChannelEvent.h
  GEN      DerivedSources/WebCore/JSdisabled___disabled___RTCPeerConnectionErrorCallback.h
  GEN      DerivedSources/WebCore/JSRTCIceCandidate.h
  GEN      DerivedSources/WebCore/JSRTCIceCandidateEvent.h
  GEN      DerivedSources/WebCore/JSdisabled___disabled___RTCPeerConnection.h
  GEN      DerivedSources/WebCore/JSRTCSessionDescription.h
  GEN      DerivedSources/WebCore/JSRTCSessionDescriptionCallback.h
  GEN      DerivedSources/WebCore/JSRTCStatsCallback.h
  GEN      DerivedSources/WebCore/JSRTCStatsReport.h
  GEN      DerivedSources/WebCore/JSRTCStatsResponse.h
  GEN      DerivedSources/WebCore/JSScreen.h
  GEN      DerivedSources/WebCore/JSScriptProfile.h
  GEN      DerivedSources/WebCore/JSScriptProfileNode.h
  GEN      DerivedSources/WebCore/JSSecurityPolicyViolationEvent.h
  GEN      DerivedSources/WebCore/JSShadowRoot.h
  GEN      DerivedSources/WebCore/JSSharedWorkerGlobalScope.h
  GEN      DerivedSources/WebCore/JSSharedWorker.h
  GEN      DerivedSources/WebCore/JSSourceBuffer.h
  GEN      DerivedSources/WebCore/JSSourceBufferList.h
  GEN      DerivedSources/WebCore/JSSourceInfo.h
  GEN      DerivedSources/WebCore/JSSpeechInputEvent.h
  GEN      DerivedSources/WebCore/JSSpeechInputResult.h
  GEN      DerivedSources/WebCore/JSSpeechInputResultList.h
  GEN      DerivedSources/WebCore/JSSQLError.h
  GEN      DerivedSources/WebCore/JSSQLException.h
  GEN      DerivedSources/WebCore/JSSQLResultSet.h
  GEN      DerivedSources/WebCore/JSSQLResultSetRowList.h
  GEN      DerivedSources/WebCore/JSSQLStatementCallback.h
  GEN      DerivedSources/WebCore/JSSQLStatementErrorCallback.h
  GEN      DerivedSources/WebCore/JSSQLTransaction.h
  GEN      DerivedSources/WebCore/JSSQLTransactionCallback.h
  GEN      DerivedSources/WebCore/JSSQLTransactionErrorCallback.h
  GEN      DerivedSources/WebCore/JSSQLTransactionSync.h
  GEN      DerivedSources/WebCore/JSSQLTransactionSyncCallback.h
  GEN      DerivedSources/WebCore/JSStorage.h
  GEN      DerivedSources/WebCore/JSStorageEvent.h
  GEN      DerivedSources/WebCore/JSStorageInfo.h
  GEN      DerivedSources/WebCore/JSStorageErrorCallback.h
  GEN      DerivedSources/WebCore/JSStorageQuota.h
  GEN      DerivedSources/WebCore/JSStorageQuotaCallback.h
  GEN      DerivedSources/WebCore/JSStorageUsageCallback.h
  GEN      DerivedSources/WebCore/JSStringCallback.h
  GEN      DerivedSources/WebCore/JSStyleMedia.h
  GEN      DerivedSources/WebCore/JSStyleSheet.h
  GEN      DerivedSources/WebCore/JSStyleSheetList.h
  GEN      DerivedSources/WebCore/JSText.h
  GEN      DerivedSources/WebCore/JSTextEvent.h
  GEN      DerivedSources/WebCore/JSTextMetrics.h
  GEN      DerivedSources/WebCore/JSTextTrack.h
  GEN      DerivedSources/WebCore/JSTextTrackCue.h
  GEN      DerivedSources/WebCore/JSTextTrackCueList.h
  GEN      DerivedSources/WebCore/JSTextTrackList.h
  GEN      DerivedSources/WebCore/JSTimeRanges.h
  GEN      DerivedSources/WebCore/JSTouch.h
  GEN      DerivedSources/WebCore/JSTouchEvent.h
  GEN      DerivedSources/WebCore/JSTouchList.h
  GEN      DerivedSources/WebCore/JSTrackEvent.h
  GEN      DerivedSources/WebCore/JSTransitionEvent.h
  GEN      DerivedSources/WebCore/JSTreeWalker.h
  GEN      DerivedSources/WebCore/JSUIEvent.h
  GEN      DerivedSources/WebCore/JSDOMURLMediaStream.h
  GEN      DerivedSources/WebCore/JSValidityState.h
  GEN      DerivedSources/WebCore/JSVoidCallback.h
  GEN      DerivedSources/WebCore/JSVideoPlaybackQuality.h
  GEN      DerivedSources/WebCore/JSVideoStreamTrack.h
  GEN      DerivedSources/WebCore/JSVideoTrack.h
  GEN      DerivedSources/WebCore/JSVideoTrackList.h
  GEN      DerivedSources/WebCore/JSWaveShaperNode.h
  GEN      DerivedSources/WebCore/JSPeriodicWave.h
  GEN      DerivedSources/WebCore/JSWebGLActiveInfo.h
  GEN      DerivedSources/WebCore/JSWebGLBuffer.h
  GEN      DerivedSources/WebCore/JSWebGLCompressedTextureATC.h
  GEN      DerivedSources/WebCore/JSWebGLCompressedTexturePVRTC.h
  GEN      DerivedSources/WebCore/JSWebGLCompressedTextureS3TC.h
  GEN      DerivedSources/WebCore/JSWebGLContextAttributes.h
  GEN      DerivedSources/WebCore/JSWebGLContextEvent.h
  GEN      DerivedSources/WebCore/JSWebGLDebugRendererInfo.h
  GEN      DerivedSources/WebCore/JSWebGLDebugShaders.h
  GEN      DerivedSources/WebCore/JSWebGLDepthTexture.h
  GEN      DerivedSources/WebCore/JSWebGLFramebuffer.h
  GEN      DerivedSources/WebCore/JSWebGLLoseContext.h
  GEN      DerivedSources/WebCore/JSWebGLProgram.h
  GEN      DerivedSources/WebCore/JSWebGLRenderbuffer.h
  GEN      DerivedSources/WebCore/JSWebGLRenderingContext.h
  GEN      DerivedSources/WebCore/JSWebGLShader.h
  GEN      DerivedSources/WebCore/JSWebGLShaderPrecisionFormat.h
  GEN      DerivedSources/WebCore/JSWebGLTexture.h
  GEN      DerivedSources/WebCore/JSWebGLUniformLocation.h
  GEN      DerivedSources/WebCore/JSWebGLVertexArrayObjectOES.h
  GEN      DerivedSources/WebCore/JSWebKitAnimationEvent.h
  GEN      DerivedSources/WebCore/JSWebKitCSSFilterValue.h
  GEN      DerivedSources/WebCore/JSWebKitCSSKeyframeRule.h
  GEN      DerivedSources/WebCore/JSWebKitCSSKeyframesRule.h
  GEN      DerivedSources/WebCore/JSWebKitCSSMatrix.h
  GEN      DerivedSources/WebCore/JSWebKitCSSRegionRule.h
  GEN      DerivedSources/WebCore/JSWebKitCSSTransformValue.h
  GEN      DerivedSources/WebCore/JSWebKitCSSViewportRule.h
  GEN      DerivedSources/WebCore/JSWebKitNamedFlow.h
  GEN      DerivedSources/WebCore/JSWebKitPoint.h
  GEN      DerivedSources/WebCore/JSWebKitTransitionEvent.h
  GEN      DerivedSources/WebCore/JSWebSocket.h
  GEN      DerivedSources/WebCore/JSWheelEvent.h
  GEN      DerivedSources/WebCore/JSWorkerGlobalScope.h
  GEN      DerivedSources/WebCore/JSWorker.h
  GEN      DerivedSources/WebCore/JSWorkerLocation.h
  GEN      DerivedSources/WebCore/JSWorkerNavigator.h
  GEN      DerivedSources/WebCore/JSXMLHttpRequest.h
  GEN      DerivedSources/WebCore/JSXMLHttpRequestException.h
  GEN      DerivedSources/WebCore/JSXMLHttpRequestProgressEvent.h
  GEN      DerivedSources/WebCore/JSXMLHttpRequestUpload.h
  GEN      DerivedSources/WebCore/JSXMLSerializer.h
  GEN      DerivedSources/WebCore/JSXPathEvaluator.h
  GEN      DerivedSources/WebCore/JSXPathException.h
  GEN      DerivedSources/WebCore/JSXPathExpression.h
  GEN      DerivedSources/WebCore/JSXPathNSResolver.h
  GEN      DerivedSources/WebCore/JSXPathResult.h
  GEN      DerivedSources/WebCore/JSXSLTProcessor.h
test ! -d ./Source/WebCore/platform/gtk/po || \
 mkdir -p ./Source/WebCore/platform/gtk/po
test ! -f ./Source/WebCore/platform/gtk/po/WebKitGTK-3.0.pot || \
  test -z "Source/WebCore/platform/gtk/po/ar.mo Source/WebCore/platform/gtk/po/as.mo Source/WebCore/platform/gtk/po/bg.mo Source/WebCore/platform/gtk/po/cs.mo Source/WebCore/platform/gtk/po/de.mo Source/WebCore/platform/gtk/po/el.mo Source/WebCore/platform/gtk/po/en_CA.mo Source/WebCore/platform/gtk/po/en_GB.mo Source/WebCore/platform/gtk/po/eo.mo Source/WebCore/platform/gtk/po/es.mo Source/WebCore/platform/gtk/po/et.mo Source/WebCore/platform/gtk/po/eu.mo Source/WebCore/platform/gtk/po/fr.mo Source/WebCore/platform/gtk/po/gl.mo Source/WebCore/platform/gtk/po/gu.mo Source/WebCore/platform/gtk/po/he.mo Source/WebCore/platform/gtk/po/hi.mo Source/WebCore/platform/gtk/po/hu.mo Source/WebCore/platform/gtk/po/id.mo Source/WebCore/platform/gtk/po/it.mo Source/WebCore/platform/gtk/po/ja.mo Source/WebCore/platform/gtk/po/kn.mo Source/WebCore/platform/gtk/po/ko.mo Source/WebCore/platform/gtk/po/lt.mo Source/WebCore/platform/gtk/po/lv.mo Source/WebCore/platform/gtk/po/ml.mo Source/WebCore/platform/gtk/po/mr.mo Source/WebCore/platform/gtk/po/nb.mo Source/WebCore/platform/gtk/po/nl.mo Source/WebCore/platform/gtk/po/or.mo Source/WebCore/platform/gtk/po/pa.mo Source/WebCore/platform/gtk/po/pl.mo Source/WebCore/platform/gtk/po/pt.mo Source/WebCore/platform/gtk/po/pt_BR.mo Source/WebCore/platform/gtk/po/ro.mo Source/WebCore/platform/gtk/po/ru.mo Source/WebCore/platform/gtk/po/sl.mo Source/WebCore/platform/gtk/po/sr.mo Source/WebCore/platform/gtk/po/sr@latin.mo Source/WebCore/platform/gtk/po/sv.mo Source/WebCore/platform/gtk/po/ta.mo Source/WebCore/platform/gtk/po/te.mo Source/WebCore/platform/gtk/po/uk.mo Source/WebCore/platform/gtk/po/vi.mo Source/WebCore/platform/gtk/po/zh_CN.mo Source/WebCore/platform/gtk/po/zh_TW.mo" || make Source/WebCore/platform/gtk/po/ar.mo Source/WebCore/platform/gtk/po/as.mo Source/WebCore/platform/gtk/po/bg.mo Source/WebCore/platform/gtk/po/cs.mo Source/WebCore/platform/gtk/po/de.mo Source/WebCore/platform/gtk/po/el.mo Source/WebCore/platform/gtk/po/en_CA.mo Source/WebCore/platform/gtk/po/en_GB.mo Source/WebCore/platform/gtk/po/eo.mo Source/WebCore/platform/gtk/po/es.mo Source/WebCore/platform/gtk/po/et.mo Source/WebCore/platform/gtk/po/eu.mo Source/WebCore/platform/gtk/po/fr.mo Source/WebCore/platform/gtk/po/gl.mo Source/WebCore/platform/gtk/po/gu.mo Source/WebCore/platform/gtk/po/he.mo Source/WebCore/platform/gtk/po/hi.mo Source/WebCore/platform/gtk/po/hu.mo Source/WebCore/platform/gtk/po/id.mo Source/WebCore/platform/gtk/po/it.mo Source/WebCore/platform/gtk/po/ja.mo Source/WebCore/platform/gtk/po/kn.mo Source/WebCore/platform/gtk/po/ko.mo Source/WebCore/platform/gtk/po/lt.mo Source/WebCore/platform/gtk/po/lv.mo Source/WebCore/platform/gtk/po/ml.mo Source/WebCore/platform/gtk/po/mr.mo Source/WebCore/platform/gtk/po/nb.mo Source/WebCore/platform/gtk/po/nl.mo Source/WebCore/platform/gtk/po/or.mo Source/WebCore/platform/gtk/po/pa.mo Source/WebCore/platform/gtk/po/pl.mo Source/WebCore/platform/gtk/po/pt.mo Source/WebCore/platform/gtk/po/pt_BR.mo Source/WebCore/platform/gtk/po/ro.mo Source/WebCore/platform/gtk/po/ru.mo Source/WebCore/platform/gtk/po/sl.mo Source/WebCore/platform/gtk/po/sr.mo Source/WebCore/platform/gtk/po/sr@latin.mo Source/WebCore/platform/gtk/po/sv.mo Source/WebCore/platform/gtk/po/ta.mo Source/WebCore/platform/gtk/po/te.mo Source/WebCore/platform/gtk/po/uk.mo Source/WebCore/platform/gtk/po/vi.mo Source/WebCore/platform/gtk/po/zh_CN.mo Source/WebCore/platform/gtk/po/zh_TW.mo
make[1]: Entering directory '/home/johny/webkitgtk/src/build-gtk'
  CXXLD    libWTF.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CXXLD    Programs/LLIntOffsetsExtractor
  GEN      DerivedSources/JavaScriptCore/LLIntAssembly.h
offlineasm: Parsing /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/llint/LowLevelInterpreter.asm and Programs/LLIntOffsetsExtractor and creating assembly file DerivedSources/JavaScriptCore/LLIntAssembly.h.
make[1]: 'Source/WebCore/platform/gtk/po/ar.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/as.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/bg.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/cs.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/de.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/el.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/en_CA.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/en_GB.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/eo.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/es.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/et.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/eu.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/fr.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/gl.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/gu.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/he.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/hi.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/hu.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/id.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/it.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/ja.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/kn.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/ko.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/lt.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/lv.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/ml.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/mr.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/nb.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/nl.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/or.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/pa.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/pl.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/pt.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/pt_BR.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/ro.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/ru.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/sl.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/sr.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/sr@latin.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/sv.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/ta.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/te.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/uk.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/vi.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/zh_CN.mo' is up to date.
make[1]: 'Source/WebCore/platform/gtk/po/zh_TW.mo' is up to date.
make[1]: Leaving directory '/home/johny/webkitgtk/src/build-gtk'
touch stamp-po
offlineasm: Including file /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm
offlineasm: Including file /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm
offlineasm: Assembly file DerivedSources/JavaScriptCore/LLIntAssembly.h successfully generated.
make  all-am
make[1]: Entering directory '/home/johny/webkitgtk/src/build-gtk'
  GEN      DerivedSources/JavaScriptCore/InspectorJSBackendDispatchers.cpp
  GEN      DerivedSources/WebCore/idl_supplemental_dependencies
mkdir -p DerivedSources/JavaScriptCore/inspector
cp DerivedSources/JavaScriptCore/InspectorJSTypeBuilders.h DerivedSources/JavaScriptCore/InspectorJSFrontendDispatchers.h DerivedSources/JavaScriptCore/InspectorJSBackendDispatchers.h DerivedSources/JavaScriptCore/inspector
/usr/bin/mkdir -p ./.deps/DerivedSources
  CXX      Source/JavaScriptCore/Programs_jsc_3-jsc.o
  GEN      DerivedSources/WebCore/JSANGLEInstancedArrays.h
  GEN      DerivedSources/WebCore/JSAbstractWorker.h
  GEN      DerivedSources/WebCore/JSAllAudioCapabilities.h
  GEN      DerivedSources/WebCore/JSAllVideoCapabilities.h
  GEN      DerivedSources/WebCore/JSAttr.h
  GEN      DerivedSources/WebCore/JSAudioBuffer.h
  GEN      DerivedSources/WebCore/JSAudioBufferCallback.h
  GEN      DerivedSources/WebCore/JSAudioBufferSourceNode.h
  GEN      DerivedSources/WebCore/JSChannelMergerNode.h
  GEN      DerivedSources/WebCore/JSChannelSplitterNode.h
  GEN      DerivedSources/WebCore/JSAudioContext.h
  GEN      DerivedSources/WebCore/JSAudioDestinationNode.h
  GEN      DerivedSources/WebCore/JSGainNode.h
  GEN      DerivedSources/WebCore/JSAudioListener.h
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h:44,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/jsc.cpp:27:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/parser/Nodes.h: In member function 'void JSC::ThrowableExpressionData::setExceptionSourceCode(const JSC::JSTextPosition&, const JSC::JSTextPosition&, const JSC::JSTextPosition&)':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/parser/Nodes.h:280:23: warning: implicitly-declared 'JSC::JSTextPosition& JSC::JSTextPosition::operator=(const JSC::JSTextPosition&)' is deprecated [-Wdeprecated-copy]
  280 |             m_divot = divot;
      |                       ^~~~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/parser/ParserError.h:31,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h:40,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/jsc.cpp:27:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/parser/ParserTokens.h:157:5: note: because 'JSC::JSTextPosition' has user-provided 'JSC::JSTextPosition::JSTextPosition(const JSC::JSTextPosition&)'
  157 |     JSTextPosition(const JSTextPosition& other) : line(other.line), offset(other.offset), lineStartOffset(other.lineStartOffset) { }
      |     ^~~~~~~~~~~~~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h:44,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/jsc.cpp:27:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/parser/Nodes.h:281:28: warning: implicitly-declared 'JSC::JSTextPosition& JSC::JSTextPosition::operator=(const JSC::JSTextPosition&)' is deprecated [-Wdeprecated-copy]
  281 |             m_divotStart = divotStart;
      |                            ^~~~~~~~~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/parser/ParserError.h:31,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h:40,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/jsc.cpp:27:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/parser/ParserTokens.h:157:5: note: because 'JSC::JSTextPosition' has user-provided 'JSC::JSTextPosition::JSTextPosition(const JSC::JSTextPosition&)'
  157 |     JSTextPosition(const JSTextPosition& other) : line(other.line), offset(other.offset), lineStartOffset(other.lineStartOffset) { }
      |     ^~~~~~~~~~~~~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h:44,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/jsc.cpp:27:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/parser/Nodes.h:282:26: warning: implicitly-declared 'JSC::JSTextPosition& JSC::JSTextPosition::operator=(const JSC::JSTextPosition&)' is deprecated [-Wdeprecated-copy]
  282 |             m_divotEnd = divotEnd;
      |                          ^~~~~~~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/parser/ParserError.h:31,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h:40,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/jsc.cpp:27:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/parser/ParserTokens.h:157:5: note: because 'JSC::JSTextPosition' has user-provided 'JSC::JSTextPosition::JSTextPosition(const JSC::JSTextPosition&)'
  157 |     JSTextPosition(const JSTextPosition& other) : line(other.line), offset(other.offset), lineStartOffset(other.lineStartOffset) { }
      |     ^~~~~~~~~~~~~~
  GEN      DerivedSources/WebCore/JSAudioNode.h
  GEN      DerivedSources/WebCore/JSPannerNode.h
  GEN      DerivedSources/WebCore/JSAudioParam.h
  GEN      DerivedSources/WebCore/JSAudioProcessingEvent.h
  GEN      DerivedSources/WebCore/JSAudioStreamTrack.h
  GEN      DerivedSources/WebCore/JSAudioTrack.h
  GEN      DerivedSources/WebCore/JSAudioTrackList.h
  GEN      DerivedSources/WebCore/JSBarProp.h
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/JSArray.h:26,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/bytecode/ArrayProfile.h:30,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/bytecode/CodeBlock.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h:34,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/jsc.cpp:27:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/JSObject.h: In member function 'void JSC::JSObject::setIndexQuickly(JSC::VM&, unsigned int, JSC::JSValue)':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/JSObject.h:327:13: warning: this statement may fall through [-Wimplicit-fallthrough=]
  327 |             if (!v.isInt32()) {
      |             ^~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/JavaScriptCore/runtime/JSObject.h:333:9: note: here
  333 |         case ALL_CONTIGUOUS_INDEXING_TYPES: {
      |         ^~~~
  GEN      DerivedSources/WebCore/JSBatteryManager.h
  GEN      DerivedSources/WebCore/JSBeforeLoadEvent.h
  GEN      DerivedSources/WebCore/JSBeforeUnloadEvent.h
  GEN      DerivedSources/WebCore/JSBiquadFilterNode.h
  GEN      DerivedSources/WebCore/JSBlob.h
  GEN      DerivedSources/WebCore/JSCanvasGradient.h
  GEN      DerivedSources/WebCore/JSCanvasPattern.h
  GEN      DerivedSources/WebCore/JSCanvasProxy.h
  GEN      DerivedSources/WebCore/JSCanvasRenderingContext2D.h
  GEN      DerivedSources/WebCore/JSCanvasRenderingContext.h
  GEN      DerivedSources/WebCore/JSCapabilityRange.h
  GEN      DerivedSources/WebCore/JSCDATASection.h
  GEN      DerivedSources/WebCore/JSCharacterData.h
  GEN      DerivedSources/WebCore/JSClientRect.h
  GEN      DerivedSources/WebCore/JSClientRectList.h
  GEN      DerivedSources/WebCore/JSClipboard.h
  GEN      DerivedSources/WebCore/JSCloseEvent.h
  GEN      DerivedSources/WebCore/JSCommandLineAPIHost.h
  GEN      DerivedSources/WebCore/JSComment.h
  GEN      DerivedSources/WebCore/JSCompositionEvent.h
  GEN      DerivedSources/WebCore/JSConsole.h
  GEN      DerivedSources/WebCore/JSConvolverNode.h
  GEN      DerivedSources/WebCore/JSCoordinates.h
  GEN      DerivedSources/WebCore/JSCounter.h
  GEN      DerivedSources/WebCore/JSCrypto.h
  GEN      DerivedSources/WebCore/JSCSSCharsetRule.h
  GEN      DerivedSources/WebCore/JSCSSFontFaceLoadEvent.h
  GEN      DerivedSources/WebCore/JSCSSFontFaceRule.h
  GEN      DerivedSources/WebCore/JSCSSHostRule.h
  GEN      DerivedSources/WebCore/JSCSSImportRule.h
  GEN      DerivedSources/WebCore/JSCSSMediaRule.h
  GEN      DerivedSources/WebCore/JSCSSPageRule.h
  GEN      DerivedSources/WebCore/JSCSSPrimitiveValue.h
  GEN      DerivedSources/WebCore/JSCSSRule.h
  GEN      DerivedSources/WebCore/JSCSSRuleList.h
  GEN      DerivedSources/WebCore/JSCSSStyleDeclaration.h
  GEN      DerivedSources/WebCore/JSCSSStyleRule.h
  GEN      DerivedSources/WebCore/JSCSSStyleSheet.h
  GEN      DerivedSources/WebCore/JSCSSSupportsRule.h
  GEN      DerivedSources/WebCore/JSCSSValue.h
  GEN      DerivedSources/WebCore/JSCSSValueList.h
  GEN      DerivedSources/WebCore/JSCryptoKey.h
  GEN      DerivedSources/WebCore/JSCryptoKeyPair.h
  GEN      DerivedSources/WebCore/JSCustomEvent.h
  GEN      DerivedSources/WebCore/JSDatabase.h
  GEN      DerivedSources/WebCore/JSDatabaseCallback.h
  GEN      DerivedSources/WebCore/JSDatabaseSync.h
  GEN      DerivedSources/WebCore/JSDataTransferItem.h
  GEN      DerivedSources/WebCore/JSDataTransferItemList.h
  GEN      DerivedSources/WebCore/JSDedicatedWorkerGlobalScope.h
  GEN      DerivedSources/WebCore/JSDelayNode.h
  GEN      DerivedSources/WebCore/JSDeviceMotionEvent.h
  GEN      DerivedSources/WebCore/JSDeviceOrientationEvent.h
  GEN      DerivedSources/WebCore/JSDocumentFragment.h
  GEN      DerivedSources/WebCore/JSDocument.h
  GEN      DerivedSources/WebCore/JSDocumentType.h
  GEN      DerivedSources/WebCore/JSDOMApplicationCache.h
  GEN      DerivedSources/WebCore/JSDOMCoreException.h
  GEN      DerivedSources/WebCore/JSDOMError.h
  GEN      DerivedSources/WebCore/JSDOMFormData.h
  GEN      DerivedSources/WebCore/JSDOMImplementation.h
  GEN      DerivedSources/WebCore/JSDOMMimeTypeArray.h
  GEN      DerivedSources/WebCore/JSDOMMimeType.h
  GEN      DerivedSources/WebCore/JSDOMNamedFlowCollection.h
  GEN      DerivedSources/WebCore/JSDOMPath.h
  GEN      DerivedSources/WebCore/JSDOMParser.h
  GEN      DerivedSources/WebCore/JSDOMPluginArray.h
  GEN      DerivedSources/WebCore/JSDOMPlugin.h
  GEN      DerivedSources/WebCore/JSDOMSecurityPolicy.h
  GEN      DerivedSources/WebCore/JSDOMSelection.h
  GEN      DerivedSources/WebCore/JSDOMSettableTokenList.h
  GEN      DerivedSources/WebCore/JSDOMStringList.h
  GEN      DerivedSources/WebCore/JSDOMStringMap.h
  GEN      DerivedSources/WebCore/JSDOMTokenList.h
  GEN      DerivedSources/WebCore/JSDOMURL.h
  GEN      DerivedSources/WebCore/JSDOMWindow.h
  GEN      DerivedSources/WebCore/JSDOMWindowCSS.h
  GEN      DerivedSources/WebCore/JSDynamicsCompressorNode.h
  GEN      DerivedSources/WebCore/JSElement.h
  GEN      DerivedSources/WebCore/JSEntity.h
  GEN      DerivedSources/WebCore/JSEntityReference.h
  GEN      DerivedSources/WebCore/JSErrorEvent.h
  GEN      DerivedSources/WebCore/JSEXTDrawBuffers.h
  GEN      DerivedSources/WebCore/JSEXTTextureFilterAnisotropic.h
  GEN      DerivedSources/WebCore/JSEventException.h
  GEN      DerivedSources/WebCore/JSEvent.h
  GEN      DerivedSources/WebCore/JSEventSource.h
  GEN      DerivedSources/WebCore/JSEventTarget.h
  GEN      DerivedSources/WebCore/JSFileError.h
  GEN      DerivedSources/WebCore/JSFile.h
  GEN      DerivedSources/WebCore/JSFileException.h
  GEN      DerivedSources/WebCore/JSFileList.h
  GEN      DerivedSources/WebCore/JSFileReader.h
  GEN      DerivedSources/WebCore/JSFileReaderSync.h
  GEN      DerivedSources/WebCore/JSFocusEvent.h
  GEN      DerivedSources/WebCore/JSFontLoader.h
  GEN      DerivedSources/WebCore/JSGamepad.h
  GEN      DerivedSources/WebCore/JSGamepadList.h
  GEN      DerivedSources/WebCore/JSGeolocation.h
  GEN      DerivedSources/WebCore/JSGeoposition.h
  GEN      DerivedSources/WebCore/JSHashChangeEvent.h
  GEN      DerivedSources/WebCore/JSHistory.h
  GEN      DerivedSources/WebCore/JSHTMLAllCollection.h
  GEN      DerivedSources/WebCore/JSHTMLAnchorElement.h
  GEN      DerivedSources/WebCore/JSHTMLAppletElement.h
  GEN      DerivedSources/WebCore/JSHTMLAreaElement.h
  GEN      DerivedSources/WebCore/JSHTMLAudioElement.h
  GEN      DerivedSources/WebCore/JSHTMLBaseElement.h
  GEN      DerivedSources/WebCore/JSHTMLBaseFontElement.h
  GEN      DerivedSources/WebCore/JSHTMLBodyElement.h
  GEN      DerivedSources/WebCore/JSHTMLBRElement.h
  GEN      DerivedSources/WebCore/JSHTMLButtonElement.h
  GEN      DerivedSources/WebCore/JSHTMLCanvasElement.h
  GEN      DerivedSources/WebCore/JSHTMLCollection.h
  GEN      DerivedSources/WebCore/JSHTMLDataListElement.h
  GEN      DerivedSources/WebCore/JSHTMLDetailsElement.h
  GEN      DerivedSources/WebCore/JSHTMLDirectoryElement.h
  GEN      DerivedSources/WebCore/JSHTMLDivElement.h
  GEN      DerivedSources/WebCore/JSHTMLDListElement.h
  GEN      DerivedSources/WebCore/JSHTMLDocument.h
  GEN      DerivedSources/WebCore/JSHTMLElement.h
  GEN      DerivedSources/WebCore/JSHTMLEmbedElement.h
  GEN      DerivedSources/WebCore/JSHTMLFieldSetElement.h
  GEN      DerivedSources/WebCore/JSHTMLFontElement.h
  GEN      DerivedSources/WebCore/JSHTMLFormControlsCollection.h
  GEN      DerivedSources/WebCore/JSHTMLFormElement.h
  GEN      DerivedSources/WebCore/JSHTMLFrameElement.h
  GEN      DerivedSources/WebCore/JSHTMLFrameSetElement.h
  GEN      DerivedSources/WebCore/JSHTMLHeadElement.h
  GEN      DerivedSources/WebCore/JSHTMLHeadingElement.h
  GEN      DerivedSources/WebCore/JSHTMLHRElement.h
  GEN      DerivedSources/WebCore/JSHTMLHtmlElement.h
  GEN      DerivedSources/WebCore/JSHTMLIFrameElement.h
  GEN      DerivedSources/WebCore/JSHTMLImageElement.h
  GEN      DerivedSources/WebCore/JSHTMLInputElement.h
  GEN      DerivedSources/WebCore/JSHTMLKeygenElement.h
  GEN      DerivedSources/WebCore/JSHTMLLabelElement.h
  GEN      DerivedSources/WebCore/JSHTMLLegendElement.h
  GEN      DerivedSources/WebCore/JSHTMLLIElement.h
  GEN      DerivedSources/WebCore/JSHTMLLinkElement.h
  GEN      DerivedSources/WebCore/JSHTMLMapElement.h
  GEN      DerivedSources/WebCore/JSHTMLMarqueeElement.h
  GEN      DerivedSources/WebCore/JSHTMLMediaElement.h
  GEN      DerivedSources/WebCore/JSHTMLMediaElementMediaStream.h
  GEN      DerivedSources/WebCore/JSHTMLMenuElement.h
  GEN      DerivedSources/WebCore/JSHTMLMetaElement.h
  GEN      DerivedSources/WebCore/JSHTMLMeterElement.h
  GEN      DerivedSources/WebCore/JSHTMLModElement.h
  GEN      DerivedSources/WebCore/JSHTMLObjectElement.h
  GEN      DerivedSources/WebCore/JSHTMLOListElement.h
  GEN      DerivedSources/WebCore/JSHTMLOptGroupElement.h
  GEN      DerivedSources/WebCore/JSHTMLOptionElement.h
  GEN      DerivedSources/WebCore/JSHTMLOptionsCollection.h
  GEN      DerivedSources/WebCore/JSHTMLOutputElement.h
  GEN      DerivedSources/WebCore/JSHTMLParagraphElement.h
  GEN      DerivedSources/WebCore/JSHTMLParamElement.h
  GEN      DerivedSources/WebCore/JSHTMLPreElement.h
  GEN      DerivedSources/WebCore/JSHTMLProgressElement.h
  GEN      DerivedSources/WebCore/JSHTMLQuoteElement.h
  GEN      DerivedSources/WebCore/JSHTMLScriptElement.h
  GEN      DerivedSources/WebCore/JSHTMLSelectElement.h
  GEN      DerivedSources/WebCore/JSHTMLSourceElement.h
  GEN      DerivedSources/WebCore/JSHTMLSpanElement.h
  GEN      DerivedSources/WebCore/JSHTMLStyleElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableCaptionElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableCellElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableColElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableRowElement.h
  GEN      DerivedSources/WebCore/JSHTMLTableSectionElement.h
  GEN      DerivedSources/WebCore/JSHTMLTemplateElement.h
  GEN      DerivedSources/WebCore/JSHTMLTextAreaElement.h
  GEN      DerivedSources/WebCore/JSHTMLTitleElement.h
  GEN      DerivedSources/WebCore/JSHTMLTrackElement.h
  GEN      DerivedSources/WebCore/JSHTMLUnknownElement.h
  GEN      DerivedSources/WebCore/JSHTMLUListElement.h
  GEN      DerivedSources/WebCore/JSHTMLVideoElement.h
  GEN      DerivedSources/WebCore/JSIDBAny.h
  GEN      DerivedSources/WebCore/JSIDBCursor.h
  GEN      DerivedSources/WebCore/JSIDBCursorWithValue.h
  GEN      DerivedSources/WebCore/JSIDBDatabase.h
  GEN      DerivedSources/WebCore/JSIDBFactory.h
  GEN      DerivedSources/WebCore/JSIDBIndex.h
  GEN      DerivedSources/WebCore/JSIDBKeyRange.h
  GEN      DerivedSources/WebCore/JSIDBObjectStore.h
  GEN      DerivedSources/WebCore/JSIDBOpenDBRequest.h
  GEN      DerivedSources/WebCore/JSIDBRequest.h
  GEN      DerivedSources/WebCore/JSIDBTransaction.h
  GEN      DerivedSources/WebCore/JSIDBVersionChangeEvent.h
  GEN      DerivedSources/WebCore/JSImageData.h
  GEN      DerivedSources/WebCore/JSInspectorFrontendHost.h
  GEN      DerivedSources/WebCore/JSScriptProcessorNode.h
  GEN      DerivedSources/WebCore/JSKeyboardEvent.h
  GEN      DerivedSources/WebCore/JSLocation.h
  GEN      DerivedSources/WebCore/JSMediaController.h
  GEN      DerivedSources/WebCore/JSMediaElementAudioSourceNode.h
  GEN      DerivedSources/WebCore/JSMediaError.h
  GEN      DerivedSources/WebCore/JSMediaList.h
  GEN      DerivedSources/WebCore/JSMediaSource.h
  GEN      DerivedSources/WebCore/JSMediaSourceStates.h
  GEN      DerivedSources/WebCore/JSMediaStream.h
  GEN      DerivedSources/WebCore/JSMediaStreamAudioSourceNode.h
  GEN      DerivedSources/WebCore/JSMediaStreamAudioDestinationNode.h
  GEN      DerivedSources/WebCore/JSMediaStreamCapabilities.h
  GEN      DerivedSources/WebCore/JSMediaStreamEvent.h
  GEN      DerivedSources/WebCore/JSMediaStreamTrack.h
  GEN      DerivedSources/WebCore/JSMediaStreamTrackEvent.h
  GEN      DerivedSources/WebCore/JSMediaStreamTrackSourcesCallback.h
  GEN      DerivedSources/WebCore/JSMediaQueryList.h
  GEN      DerivedSources/WebCore/JSMediaQueryListListener.h
  GEN      DerivedSources/WebCore/JSMediaTrackConstraint.h
  GEN      DerivedSources/WebCore/JSMediaTrackConstraints.h
  GEN      DerivedSources/WebCore/JSMediaTrackConstraintSet.h
  GEN      DerivedSources/WebCore/JSMessageChannel.h
  GEN      DerivedSources/WebCore/JSMessageEvent.h
  GEN      DerivedSources/WebCore/JSMessagePort.h
  GEN      DerivedSources/WebCore/JSMouseEvent.h
  GEN      DerivedSources/WebCore/JSMutationEvent.h
  GEN      DerivedSources/WebCore/JSMutationObserver.h
  GEN      DerivedSources/WebCore/JSMutationRecord.h
  GEN      DerivedSources/WebCore/JSNamedNodeMap.h
  GEN      DerivedSources/WebCore/JSNavigator.h
  GEN      DerivedSources/WebCore/JSNavigatorUserMediaError.h
  GEN      DerivedSources/WebCore/JSNavigatorUserMediaErrorCallback.h
  GEN      DerivedSources/WebCore/JSNavigatorUserMediaSuccessCallback.h
  GEN      DerivedSources/WebCore/JSNodeFilter.h
  GEN      DerivedSources/WebCore/JSNode.h
  GEN      DerivedSources/WebCore/JSNodeIterator.h
  GEN      DerivedSources/WebCore/JSNodeList.h
  GEN      DerivedSources/WebCore/JSNotation.h
  GEN      DerivedSources/WebCore/JSNotificationCenter.h
  GEN      DerivedSources/WebCore/JSNotification.h
  GEN      DerivedSources/WebCore/JSNotificationPermissionCallback.h
  GEN      DerivedSources/WebCore/JSOESStandardDerivatives.h
  GEN      DerivedSources/WebCore/JSOESTextureFloat.h
  GEN      DerivedSources/WebCore/JSOESTextureFloatLinear.h
  GEN      DerivedSources/WebCore/JSOESTextureHalfFloat.h
  GEN      DerivedSources/WebCore/JSOESTextureHalfFloatLinear.h
  GEN      DerivedSources/WebCore/JSOESVertexArrayObject.h
  GEN      DerivedSources/WebCore/JSOESElementIndexUint.h
  GEN      DerivedSources/WebCore/JSOfflineAudioContext.h
  GEN      DerivedSources/WebCore/JSOfflineAudioCompletionEvent.h
  GEN      DerivedSources/WebCore/JSOscillatorNode.h
  GEN      DerivedSources/WebCore/JSOverflowEvent.h
  GEN      DerivedSources/WebCore/JSPageTransitionEvent.h
  GEN      DerivedSources/WebCore/JSPerformance.h
  GEN      DerivedSources/WebCore/JSPerformanceEntry.h
  GEN      DerivedSources/WebCore/JSPerformanceEntryList.h
  GEN      DerivedSources/WebCore/JSPerformanceMark.h
  GEN      DerivedSources/WebCore/JSPerformanceMeasure.h
  GEN      DerivedSources/WebCore/JSPerformanceNavigation.h
  GEN      DerivedSources/WebCore/JSPerformanceResourceTiming.h
  GEN      DerivedSources/WebCore/JSPerformanceTiming.h
  GEN      DerivedSources/WebCore/JSPopStateEvent.h
  GEN      DerivedSources/WebCore/JSPositionCallback.h
  GEN      DerivedSources/WebCore/JSPositionError.h
  GEN      DerivedSources/WebCore/JSPositionErrorCallback.h
  GEN      DerivedSources/WebCore/JSProcessingInstruction.h
  GEN      DerivedSources/WebCore/JSProgressEvent.h
  GEN      DerivedSources/WebCore/JSRadioNodeList.h
  GEN      DerivedSources/WebCore/JSRangeException.h
  GEN      DerivedSources/WebCore/JSRange.h
  GEN      DerivedSources/WebCore/JSAnalyserNode.h
  GEN      DerivedSources/WebCore/JSRect.h
  GEN      DerivedSources/WebCore/JSRequestAnimationFrameCallback.h
  GEN      DerivedSources/WebCore/JSRGBColor.h
  GEN      DerivedSources/WebCore/JSRTCDTMFSender.h
  GEN      DerivedSources/WebCore/JSRTCDTMFToneChangeEvent.h
  GEN      DerivedSources/WebCore/JSRTCDataChannel.h
  GEN      DerivedSources/WebCore/JSRTCDataChannelEvent.h
  GEN      DerivedSources/WebCore/JSdisabled___disabled___RTCPeerConnectionErrorCallback.h
  GEN      DerivedSources/WebCore/JSRTCIceCandidate.h
  GEN      DerivedSources/WebCore/JSRTCIceCandidateEvent.h
  GEN      DerivedSources/WebCore/JSdisabled___disabled___RTCPeerConnection.h
  GEN      DerivedSources/WebCore/JSRTCSessionDescription.h
  GEN      DerivedSources/WebCore/JSRTCSessionDescriptionCallback.h
  GEN      DerivedSources/WebCore/JSRTCStatsCallback.h
  GEN      DerivedSources/WebCore/JSRTCStatsReport.h
  GEN      DerivedSources/WebCore/JSRTCStatsResponse.h
  GEN      DerivedSources/WebCore/JSScreen.h
  GEN      DerivedSources/WebCore/JSScriptProfile.h
  GEN      DerivedSources/WebCore/JSScriptProfileNode.h
  GEN      DerivedSources/WebCore/JSSecurityPolicyViolationEvent.h
  GEN      DerivedSources/WebCore/JSShadowRoot.h
  GEN      DerivedSources/WebCore/JSSharedWorkerGlobalScope.h
  GEN      DerivedSources/WebCore/JSSharedWorker.h
  GEN      DerivedSources/WebCore/JSSourceBuffer.h
  GEN      DerivedSources/WebCore/JSSourceBufferList.h
  GEN      DerivedSources/WebCore/JSSourceInfo.h
  GEN      DerivedSources/WebCore/JSSpeechInputEvent.h
  GEN      DerivedSources/WebCore/JSSpeechInputResult.h
  GEN      DerivedSources/WebCore/JSSpeechInputResultList.h
  GEN      DerivedSources/WebCore/JSSQLError.h
  GEN      DerivedSources/WebCore/JSSQLException.h
  GEN      DerivedSources/WebCore/JSSQLResultSet.h
  GEN      DerivedSources/WebCore/JSSQLResultSetRowList.h
  GEN      DerivedSources/WebCore/JSSQLStatementCallback.h
  GEN      DerivedSources/WebCore/JSSQLStatementErrorCallback.h
  GEN      DerivedSources/WebCore/JSSQLTransaction.h
  GEN      DerivedSources/WebCore/JSSQLTransactionCallback.h
  GEN      DerivedSources/WebCore/JSSQLTransactionErrorCallback.h
  GEN      DerivedSources/WebCore/JSSQLTransactionSync.h
  GEN      DerivedSources/WebCore/JSSQLTransactionSyncCallback.h
  GEN      DerivedSources/WebCore/JSStorage.h
  GEN      DerivedSources/WebCore/JSStorageEvent.h
  GEN      DerivedSources/WebCore/JSStorageInfo.h
  GEN      DerivedSources/WebCore/JSStorageErrorCallback.h
  GEN      DerivedSources/WebCore/JSStorageQuota.h
  GEN      DerivedSources/WebCore/JSStorageQuotaCallback.h
  GEN      DerivedSources/WebCore/JSStorageUsageCallback.h
  GEN      DerivedSources/WebCore/JSStringCallback.h
  GEN      DerivedSources/WebCore/JSStyleMedia.h
  GEN      DerivedSources/WebCore/JSStyleSheet.h
  GEN      DerivedSources/WebCore/JSStyleSheetList.h
  GEN      DerivedSources/WebCore/JSTextEvent.h
  GEN      DerivedSources/WebCore/JSText.h
  GEN      DerivedSources/WebCore/JSTextMetrics.h
  GEN      DerivedSources/WebCore/JSTextTrack.h
  GEN      DerivedSources/WebCore/JSTextTrackCue.h
  GEN      DerivedSources/WebCore/JSTextTrackCueList.h
  GEN      DerivedSources/WebCore/JSTextTrackList.h
  GEN      DerivedSources/WebCore/JSTimeRanges.h
  GEN      DerivedSources/WebCore/JSTouchEvent.h
  GEN      DerivedSources/WebCore/JSTouch.h
  GEN      DerivedSources/WebCore/JSTouchList.h
  GEN      DerivedSources/WebCore/JSTrackEvent.h
  GEN      DerivedSources/WebCore/JSTransitionEvent.h
  GEN      DerivedSources/WebCore/JSTreeWalker.h
  GEN      DerivedSources/WebCore/JSUIEvent.h
  GEN      DerivedSources/WebCore/JSDOMURLMediaStream.h
  GEN      DerivedSources/WebCore/JSValidityState.h
  GEN      DerivedSources/WebCore/JSVoidCallback.h
  GEN      DerivedSources/WebCore/JSVideoPlaybackQuality.h
  GEN      DerivedSources/WebCore/JSVideoStreamTrack.h
  GEN      DerivedSources/WebCore/JSVideoTrack.h
  GEN      DerivedSources/WebCore/JSVideoTrackList.h
  GEN      DerivedSources/WebCore/JSWaveShaperNode.h
  GEN      DerivedSources/WebCore/JSPeriodicWave.h
  GEN      DerivedSources/WebCore/JSWebGLActiveInfo.h
  GEN      DerivedSources/WebCore/JSWebGLBuffer.h
  GEN      DerivedSources/WebCore/JSWebGLCompressedTextureATC.h
  GEN      DerivedSources/WebCore/JSWebGLCompressedTexturePVRTC.h
  GEN      DerivedSources/WebCore/JSWebGLCompressedTextureS3TC.h
  GEN      DerivedSources/WebCore/JSWebGLContextAttributes.h
  GEN      DerivedSources/WebCore/JSWebGLContextEvent.h
  GEN      DerivedSources/WebCore/JSWebGLDebugRendererInfo.h
  GEN      DerivedSources/WebCore/JSWebGLDebugShaders.h
  GEN      DerivedSources/WebCore/JSWebGLDepthTexture.h
  GEN      DerivedSources/WebCore/JSWebGLFramebuffer.h
  GEN      DerivedSources/WebCore/JSWebGLLoseContext.h
  GEN      DerivedSources/WebCore/JSWebGLProgram.h
  GEN      DerivedSources/WebCore/JSWebGLRenderbuffer.h
  GEN      DerivedSources/WebCore/JSWebGLRenderingContext.h
  GEN      DerivedSources/WebCore/JSWebGLShader.h
  GEN      DerivedSources/WebCore/JSWebGLShaderPrecisionFormat.h
  GEN      DerivedSources/WebCore/JSWebGLTexture.h
  GEN      DerivedSources/WebCore/JSWebGLUniformLocation.h
  GEN      DerivedSources/WebCore/JSWebGLVertexArrayObjectOES.h
  GEN      DerivedSources/WebCore/JSWebKitAnimationEvent.h
  GEN      DerivedSources/WebCore/JSWebKitCSSFilterValue.h
  GEN      DerivedSources/WebCore/JSWebKitCSSKeyframeRule.h
  GEN      DerivedSources/WebCore/JSWebKitCSSKeyframesRule.h
  GEN      DerivedSources/WebCore/JSWebKitCSSMatrix.h
  GEN      DerivedSources/WebCore/JSWebKitCSSRegionRule.h
  GEN      DerivedSources/WebCore/JSWebKitCSSTransformValue.h
  GEN      DerivedSources/WebCore/JSWebKitCSSViewportRule.h
  GEN      DerivedSources/WebCore/JSWebKitNamedFlow.h
  GEN      DerivedSources/WebCore/JSWebKitPoint.h
  GEN      DerivedSources/WebCore/JSWebKitTransitionEvent.h
  GEN      DerivedSources/WebCore/JSWebSocket.h
  GEN      DerivedSources/WebCore/JSWheelEvent.h
  GEN      DerivedSources/WebCore/JSWorkerGlobalScope.h
  GEN      DerivedSources/WebCore/JSWorker.h
  GEN      DerivedSources/WebCore/JSWorkerLocation.h
  GEN      DerivedSources/WebCore/JSWorkerNavigator.h
  GEN      DerivedSources/WebCore/JSXMLHttpRequestException.h
  GEN      DerivedSources/WebCore/JSXMLHttpRequest.h
  GEN      DerivedSources/WebCore/JSXMLHttpRequestProgressEvent.h
  GEN      DerivedSources/WebCore/JSXMLHttpRequestUpload.h
  GEN      DerivedSources/WebCore/JSXMLSerializer.h
  GEN      DerivedSources/WebCore/JSXPathEvaluator.h
  GEN      DerivedSources/WebCore/JSXPathException.h
  GEN      DerivedSources/WebCore/JSXPathExpression.h
  GEN      DerivedSources/WebCore/JSXPathNSResolver.h
  GEN      DerivedSources/WebCore/JSXPathResult.h
  GEN      DerivedSources/WebCore/JSXSLTProcessor.h
  GEN      DerivedSources/WebCore/JSSVGDocument.h
  CXX      Source/WebCore/platform/audio/libWebCorePlatform_la-HRTFDatabase.lo
  CXX      Source/WebCore/platform/audio/libWebCorePlatform_la-HRTFDatabaseLoader.lo
  CXX      Source/WebCore/platform/audio/libWebCorePlatform_la-HRTFElevation.lo
  CXX      Source/WebCore/platform/audio/libWebCorePlatform_la-HRTFKernel.lo
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/FFTFrame.h:32,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFKernel.h:32,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFKernel.cpp:33:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h: In instantiation of 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:343:26:   required from 'typename std::_Unique_if<T>::_Single_object std::make_unique(Args&& ...) [with T = WebCore::AudioArray<float>; Args = {long unsigned int&}; typename std::_Unique_if<T>::_Single_object = std::unique_ptr<WebCore::AudioArray<float> >]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioChannel.h:58:63:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:57:51: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
   57 |         Checked<unsigned> initialSize = sizeof(T) * n;
      |                                         ~~~~~~~~~~^~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/config.h:74,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFKernel.cpp:29:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:703:180: note:   initializing argument 2 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(U, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  703 | template <typename U, typename V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator*(U lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/FFTFrame.h:32,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFKernel.h:32,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFKernel.cpp:33:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:75:69: warning: implicitly-declared 'constexpr WTF::Checked<unsigned int>::Checked(const WTF::Checked<unsigned int>&)' is deprecated [-Wdeprecated-copy]
   75 |             T* allocation = static_cast<T*>(fastMalloc((initialSize + extraAllocationBytes).unsafeGet()));
      |                                                        ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/config.h:74,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFKernel.cpp:29:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:678:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, V) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  678 | template <typename U, typename V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator+(Checked<U, OverflowHandler> lhs, V rhs)
      |                                                                                                                                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(U, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:57:51:   required from 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:343:26:   required from 'typename std::_Unique_if<T>::_Single_object std::make_unique(Args&& ...) [with T = WebCore::AudioArray<float>; Args = {long unsigned int&}; typename std::_Unique_if<T>::_Single_object = std::unique_ptr<WebCore::AudioArray<float> >]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioChannel.h:58:63:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:705:45: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
  705 |     return Checked<U, OverflowHandler>(lhs) * rhs;
      |            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:666:206: note:   initializing argument 2 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(WTF::Checked<U, OverflowHandler>, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  666 | template <typename U, typename V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator*(Checked<U, OverflowHandler> lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                                                                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, V) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:75:69:   required from 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:343:26:   required from 'typename std::_Unique_if<T>::_Single_object std::make_unique(Args&& ...) [with T = WebCore::AudioArray<float>; Args = {long unsigned int&}; typename std::_Unique_if<T>::_Single_object = std::unique_ptr<WebCore::AudioArray<float> >]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioChannel.h:58:63:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:680:16: warning: implicitly-declared 'constexpr WTF::Checked<unsigned int>::Checked(const WTF::Checked<unsigned int>&)' is deprecated [-Wdeprecated-copy]
  680 |     return lhs + Checked<V, OverflowHandler>(rhs);
      |            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:642:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, WTF::Checked<V, OverflowHandler>) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  642 | template <typename U, typename V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator+(Checked<U, OverflowHandler> lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
  CXX      Source/WebCore/platform/audio/libWebCorePlatform_la-HRTFPanner.lo
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/FFTFrame.h:32,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFKernel.h:32,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFElevation.h:32,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFElevation.cpp:33:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h: In instantiation of 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:343:26:   required from 'typename std::_Unique_if<T>::_Single_object std::make_unique(Args&& ...) [with T = WebCore::AudioArray<float>; Args = {long unsigned int&}; typename std::_Unique_if<T>::_Single_object = std::unique_ptr<WebCore::AudioArray<float> >]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioChannel.h:58:63:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:57:51: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
   57 |         Checked<unsigned> initialSize = sizeof(T) * n;
      |                                         ~~~~~~~~~~^~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/config.h:74,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFElevation.cpp:29:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:703:180: note:   initializing argument 2 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(U, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  703 | me OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator*(U lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~

In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/FFTFrame.h:32,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFKernel.h:32,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFElevation.h:32,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFElevation.cpp:33:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:75:69: warning: implicitly-declared 'constexpr WTF::Checked<unsigned int>::Checked(const WTF::Checked<unsigned int>&)' is deprecated [-Wdeprecated-copy]
   75 |             T* allocation = static_cast<T*>(fastMalloc((initialSize + extraAllocationBytes).unsafeGet()));
      |                                                        ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/config.h:74,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFElevation.cpp:29:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:678:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, V) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  678 | name V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator+(Checked<U, OverflowHandler> lhs, V rhs)
      |                                                                                                                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~

/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(U, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:57:51:   required from 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:343:26:   required from 'typename std::_Unique_if<T>::_Single_object std::make_unique(Args&& ...) [with T = WebCore::AudioArray<float>; Args = {long unsigned int&}; typename std::_Unique_if<T>::_Single_object = std::unique_ptr<WebCore::AudioArray<float> >]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioChannel.h:58:63:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:705:45: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
  705 |     return Checked<U, OverflowHandler>(lhs) * rhs;
      |            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:666:206: note:   initializing argument 2 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(WTF::Checked<U, OverflowHandler>, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  666 |  inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator*(Checked<U, OverflowHandler> lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~

/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, V) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:75:69:   required from 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:343:26:   required from 'typename std::_Unique_if<T>::_Single_object std::make_unique(Args&& ...) [with T = WebCore::AudioArray<float>; Args = {long unsigned int&}; typename std::_Unique_if<T>::_Single_object = std::unique_ptr<WebCore::AudioArray<float> >]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioChannel.h:58:63:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:680:16: warning: implicitly-declared 'constexpr WTF::Checked<unsigned int>::Checked(const WTF::Checked<unsigned int>&)' is deprecated [-Wdeprecated-copy]
  680 |     return lhs + Checked<V, OverflowHandler>(rhs);
      |            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:642:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, WTF::Checked<V, OverflowHandler>) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  642 |  typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator+(Checked<U, OverflowHandler> lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~

  CXX      Source/WebCore/platform/audio/libWebCorePlatform_la-Panner.lo
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/Modules/webaudio/DelayDSPKernel.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFPanner.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFPanner.cpp:29:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h: In instantiation of 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFPanner.cpp:68:32:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:57:51: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
   57 |         Checked<unsigned> initialSize = sizeof(T) * n;
      |                                         ~~~~~~~~~~^~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/config.h:74,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFPanner.cpp:25:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:703:180: note:   initializing argument 2 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(U, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  703 | template <typename U, typename V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator*(U lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/Modules/webaudio/DelayDSPKernel.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFPanner.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFPanner.cpp:29:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:75:69: warning: implicitly-declared 'constexpr WTF::Checked<unsigned int>::Checked(const WTF::Checked<unsigned int>&)' is deprecated [-Wdeprecated-copy]
   75 |             T* allocation = static_cast<T*>(fastMalloc((initialSize + extraAllocationBytes).unsafeGet()));
      |                                                        ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/config.h:74,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFPanner.cpp:25:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:678:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, V) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  678 | template <typename U, typename V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator+(Checked<U, OverflowHandler> lhs, V rhs)
      |                                                                                                                                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(U, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:57:51:   required from 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFPanner.cpp:68:32:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:705:45: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
  705 |     return Checked<U, OverflowHandler>(lhs) * rhs;
      |            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:666:206: note:   initializing argument 2 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(WTF::Checked<U, OverflowHandler>, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  666 | template <typename U, typename V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator*(Checked<U, OverflowHandler> lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                                                                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, V) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:75:69:   required from 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFPanner.cpp:68:32:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:680:16: warning: implicitly-declared 'constexpr WTF::Checked<unsigned int>::Checked(const WTF::Checked<unsigned int>&)' is deprecated [-Wdeprecated-copy]
  680 |     return lhs + Checked<V, OverflowHandler>(rhs);
      |            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:642:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, WTF::Checked<V, OverflowHandler>) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  642 | template <typename U, typename V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator+(Checked<U, OverflowHandler> lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
  CXX      Source/WebCore/platform/audio/libWebCorePlatform_la-MediaSession.lo
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/Modules/webaudio/DelayDSPKernel.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFPanner.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/Panner.cpp:36:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h: In instantiation of 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:343:26:   required from 'typename std::_Unique_if<T>::_Single_object std::make_unique(Args&& ...) [with T = WebCore::AudioArray<float>; Args = {long unsigned int&}; typename std::_Unique_if<T>::_Single_object = std::unique_ptr<WebCore::AudioArray<float> >]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioChannel.h:58:63:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:57:51: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
   57 |         Checked<unsigned> initialSize = sizeof(T) * n;
      |                                         ~~~~~~~~~~^~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/config.h:74,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/Panner.cpp:29:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:703:180: note:   initializing argument 2 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(U, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  703 | me OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator*(U lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~

In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/Modules/webaudio/DelayDSPKernel.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/HRTFPanner.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/Panner.cpp:36:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:75:69: warning: implicitly-declared 'constexpr WTF::Checked<unsigned int>::Checked(const WTF::Checked<unsigned int>&)' is deprecated [-Wdeprecated-copy]
   75 |             T* allocation = static_cast<T*>(fastMalloc((initialSize + extraAllocationBytes).unsafeGet()));
      |                                                        ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:33,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/FastMalloc.h:28,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/config.h:74,
                 from /home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/Panner.cpp:29:
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:678:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, V) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  678 | name V, typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator+(Checked<U, OverflowHandler> lhs, V rhs)
      |                                                                                                                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~

/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(U, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:57:51:   required from 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:343:26:   required from 'typename std::_Unique_if<T>::_Single_object std::make_unique(Args&& ...) [with T = WebCore::AudioArray<float>; Args = {long unsigned int&}; typename std::_Unique_if<T>::_Single_object = std::unique_ptr<WebCore::AudioArray<float> >]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioChannel.h:58:63:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:705:45: warning: implicitly-declared 'constexpr WTF::Checked<long unsigned int>::Checked(const WTF::Checked<long unsigned int>&)' is deprecated [-Wdeprecated-copy]
  705 |     return Checked<U, OverflowHandler>(lhs) * rhs;
      |            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<long unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = long unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:666:206: note:   initializing argument 2 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator*(WTF::Checked<U, OverflowHandler>, WTF::Checked<V, OverflowHandler>) [with U = long unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  666 |  inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator*(Checked<U, OverflowHandler> lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~

/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h: In instantiation of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, V) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]':
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:75:69:   required from 'void WebCore::AudioArray<T>::allocate(WTF::Checked<long unsigned int>) [with T = float]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioArray.h:45:9:   required from 'WebCore::AudioArray<T>::AudioArray(size_t) [with T = float; size_t = long unsigned int]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/StdLibExtras.h:343:26:   required from 'typename std::_Unique_if<T>::_Single_object std::make_unique(Args&& ...) [with T = WebCore::AudioArray<float>; Args = {long unsigned int&}; typename std::_Unique_if<T>::_Single_object = std::unique_ptr<WebCore::AudioArray<float> >]'
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WebCore/platform/audio/AudioChannel.h:58:63:   required from here
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:680:16: warning: implicitly-declared 'constexpr WTF::Checked<unsigned int>::Checked(const WTF::Checked<unsigned int>&)' is deprecated [-Wdeprecated-copy]
  680 |     return lhs + Checked<V, OverflowHandler>(rhs);
      |            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:465:20: note: because 'WTF::Checked<unsigned int>' has user-provided 'const WTF::Checked<T, OverflowHandler>& WTF::Checked<T, OverflowHandler>::operator=(WTF::Checked<T, OverflowHandler>) [with T = unsigned int; OverflowHandler = WTF::CrashOnOverflow]'
  465 |     const Checked& operator=(Checked rhs)
      |                    ^~~~~~~~
/home/johny/webkitgtk/src/webkitgtk-2.4.11/Source/WTF/wtf/CheckedArithmetic.h:642:173: note:   initializing argument 1 of 'WTF::Checked<typename WTF::Result<U, V>::ResultType, OverflowHandler> WTF::operator+(WTF::Checked<U, OverflowHandler>, WTF::Checked<V, OverflowHandler>) [with U = unsigned int; V = long unsigned int; OverflowHandler = WTF::CrashOnOverflow; typename WTF::Result<U, V>::ResultType = long unsigned int]'
  642 |  typename OverflowHandler> static inline Checked<typename Result<U, V>::ResultType, OverflowHandler> operator+(Checked<U, OverflowHandler> lhs, Checked<V, OverflowHandler> rhs)
      |                                                                                                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~

  CXX      Source/WebCore/platform/audio/libWebCorePlatform_la-MediaSessionManager.lo
  CXX      Source/WebCore/platform/libWebCorePlatform_la-CalculationValue.lo
  CXX      Source/WebCore/platform/libWebCorePlatform_la-CrossThreadCopier.lo
...

Offline

Board footer

Powered by FluxBB