Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Chakra
Packages
core
Commits
f7084e10
Commit
f7084e10
authored
Apr 03, 2016
by
AlmAck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rebuild qtwebkit
parent
6137690c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
5 deletions
+23
-5
qtwebkit/PKGBUILD
qtwebkit/PKGBUILD
+10
-5
qtwebkit/gcc-5.patch
qtwebkit/gcc-5.patch
+13
-0
No files found.
qtwebkit/PKGBUILD
View file @
f7084e10
...
...
@@ -3,8 +3,8 @@
pkgname
=
qtwebkit
pkgver
=
2.3.4
_pkgver
=
23
pkgrel
=
1
_qtver
=
4.8.
6
pkgrel
=
2
_qtver
=
4.8.
7
arch
=(
'x86_64'
)
url
=
'http://trac.webkit.org/wiki/QtWebKit'
pkgdesc
=
'An open source web browser engine (Qt port)'
...
...
@@ -25,13 +25,15 @@ source=(
'qwebview.patch'
'use-python2.patch'
'qtwebkit-2.3-debuginfo.patch'
'qtwebkit-2.3-save_memory.patch'
)
'qtwebkit-2.3-save_memory.patch'
'gcc-5.patch'
)
sha1sums
=(
'31bc60de1cf26bb0766d539b4d564651ddbb0650'
'
ddf9c20ca8309a116e0466c42984238009525da
6'
'
76aef40335c0701e5be7bb3a9101df5d22fe366
6'
'c3df6107233f466a032e36681cee07f16536657c'
'315b6ff603f35e5492a036f7082f6aa075dfb607'
'1329b1564fd70ced8be411eac275972a49502e23'
'6563e0e1b36a8ab28cb65edfa724aca1dbb03dfe'
)
'6563e0e1b36a8ab28cb65edfa724aca1dbb03dfe'
'5d506578ea30daeeeb1e91ab83876fe6d5669715'
)
prepare
()
{
cd
${
pkgname
}
-
${
pkgver
}
...
...
@@ -42,6 +44,9 @@ prepare() {
patch
-p1
-i
"
${
srcdir
}
"
/qtwebkit-2.3-debuginfo.patch
patch
-p1
-i
"
${
srcdir
}
"
/qtwebkit-2.3-save_memory.patch
# Fix build with GCC 5 (Fedora)
patch
-p1
-i
"
$srcdir
"
/gcc-5.patch
# QWebView plugin
cd
../
$_pkgfqn
patch
-p1
-i
"
${
srcdir
}
"
/qwebview.patch
...
...
qtwebkit/gcc-5.patch
0 → 100644
View file @
f7084e10
--- webkit-qtwebkit-23/Source/JavaScriptCore/runtime/JSObject.cpp.gcc5 2014-09-24 06:42:05.000000000 -0500
+++ webkit-qtwebkit-23/Source/JavaScriptCore/runtime/JSObject.cpp 2015-03-20 08:15:53.192778375 -0500
@@ -1922,6 +1922,10 @@
void JSObject::putByIndexBeyondVectorLen
}
}
+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<ContiguousShape>(ExecState* exec, unsigned i, JSValue value);
+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<DoubleShape>(ExecState* exec, unsigned i, JSValue value);
+template void JSObject::putByIndexBeyondVectorLengthWithoutAttributes<Int32Shape>(ExecState* exec, unsigned i, JSValue value);
+
void JSObject::putByIndexBeyondVectorLengthWithArrayStorage(ExecState* exec, unsigned i, JSValue value, bool shouldThrow, ArrayStorage* storage)
{
JSGlobalData& globalData = exec->globalData();
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment