diff options
author | Spenser Gilliland <spenser@gillilanding.com> | 2013-06-07 13:18:50 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-06-08 22:54:24 +0200 |
commit | 69e3d032ed0da9f246d39c5e04b63102004810f2 (patch) | |
tree | fef443e8b67df5d0a4e495f0f61db84c3ef56030 /package/webkit/webkit-fix-build-with-gcc-4-6.patch | |
parent | dca8781610115458f76589e6fd9a19c5ed5971b0 (diff) | |
download | buildroot-69e3d032ed0da9f246d39c5e04b63102004810f2.tar.gz buildroot-69e3d032ed0da9f246d39c5e04b63102004810f2.zip |
webkit: bump to version 1.9.6
Remove bison-2.6-compat patch as it has been incorporated upstream.
Remove fix build issue with old gtk as gtk has been bumped to a newer
version.
Remove fix-build-with-gcc-4-6 as it has incorporated upstream.
Remove directfb patches due to depreciation
Remove pool patch as it is no longer required
Remove pthread_getattr_np as webkit no longer uses this function.
Signed-off-by: Spenser Gilliland <spenser@gillilanding.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/webkit/webkit-fix-build-with-gcc-4-6.patch')
-rw-r--r-- | package/webkit/webkit-fix-build-with-gcc-4-6.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/package/webkit/webkit-fix-build-with-gcc-4-6.patch b/package/webkit/webkit-fix-build-with-gcc-4-6.patch deleted file mode 100644 index 181c7f52fc..0000000000 --- a/package/webkit/webkit-fix-build-with-gcc-4-6.patch +++ /dev/null @@ -1,45 +0,0 @@ -Backported from commit 88e08c43d0200a4b06a298b7d2541965eebc0afe: -Removed the ChangeLog part. - -From: "commit-queue@webkit.org" - <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc> -Date: Mon, 18 Apr 2011 06:53:23 +0000 -Subject: [PATCH] 2011-04-17 Thierry Reding - <thierry.reding@avionic-design.de> - - Reviewed by Adam Barth. - - Fix build with GCC 4.6. - - * dom/make_names.pl: Execute preprocessor without the -P option. The - preprocessor in GCC 4.6 eats empty lines, effectively breaking the - parsing performed by this script. Dropping the -P option when invoking - the preprocessor keeps the empty lines but as a side-effect also adds - additional linemarkers. - - From the cpp manpage: - - -P Inhibit generation of linemarkers in the output from the - preprocessor. This might be useful when running the preprocessor - on something that is not C code, and will be sent to a program - which might be confused by the linemarkers. - - The linemarkers are not problematic, however, because the script - properly handles them by ignoring all lines starting with a #. - -diff --git a/WebCore/dom/make_names.pl b/WebCore/dom/make_names.pl -index 836137e..50386e0 100755 ---- a/WebCore/dom/make_names.pl -+++ b/WebCore/dom/make_names.pl -@@ -54,7 +54,7 @@ if ($ENV{CC}) { - } else { - $gccLocation = "/usr/bin/gcc"; - } --my $preprocessor = $gccLocation . " -E -P -x c++"; -+my $preprocessor = $gccLocation . " -E -x c++"; - - GetOptions( - 'tags=s' => \$tagsFile, --- -1.7.11.4 - |