diff options
| -rw-r--r-- | meta/conf/distro/poky.conf | 2 | ||||
| -rw-r--r-- | meta/packages/webkit/files/GNUmakefile.am | 4 | ||||
| -rwxr-xr-x[-rw-r--r--] | meta/packages/webkit/files/autogen.sh | 0 | ||||
| -rw-r--r-- | meta/packages/webkit/files/configure.ac | 56 | ||||
| -rw-r--r-- | meta/packages/webkit/webkit-gtk_svn.bb | 3 |
5 files changed, 37 insertions, 28 deletions
diff --git a/meta/conf/distro/poky.conf b/meta/conf/distro/poky.conf index 0dc851bfed..a88407f568 100644 --- a/meta/conf/distro/poky.conf +++ b/meta/conf/distro/poky.conf | |||
| @@ -142,7 +142,7 @@ SRCREV_pn-gaku ?= "365" | |||
| 142 | SRCREV_pn-gypsy ?= "39" | 142 | SRCREV_pn-gypsy ?= "39" |
| 143 | SRCDATE_yaffs2-utils = "20071107" | 143 | SRCDATE_yaffs2-utils = "20071107" |
| 144 | SRCDATE_yaffs2-utils-native = "20071107" | 144 | SRCDATE_yaffs2-utils-native = "20071107" |
| 145 | SRCREV_pn-webkit-gtk ?= "31467" | 145 | SRCREV_pn-webkit-gtk ?= "31859" |
| 146 | SRCREV_pn-clipboard-manager ?= "14994" | 146 | SRCREV_pn-clipboard-manager ?= "14994" |
| 147 | SRCREV_pn-opkg ?= "4209" | 147 | SRCREV_pn-opkg ?= "4209" |
| 148 | SRCREV_pn-opkg-native ?= "4209" | 148 | SRCREV_pn-opkg-native ?= "4209" |
diff --git a/meta/packages/webkit/files/GNUmakefile.am b/meta/packages/webkit/files/GNUmakefile.am index 4cdd3dbfeb..a0aefbf50b 100644 --- a/meta/packages/webkit/files/GNUmakefile.am +++ b/meta/packages/webkit/files/GNUmakefile.am | |||
| @@ -116,13 +116,13 @@ libJavaScriptCore_la_CXXFLAGS = \ | |||
| 116 | $(global_cflags) \ | 116 | $(global_cflags) \ |
| 117 | $(GLOBALDEPS_CFLAGS) \ | 117 | $(GLOBALDEPS_CFLAGS) \ |
| 118 | $(UNICODE_CFLAGS) \ | 118 | $(UNICODE_CFLAGS) \ |
| 119 | -fstrict-aliasing | 119 | -fno-strict-aliasing |
| 120 | 120 | ||
| 121 | libJavaScriptCore_la_CFLAGS = \ | 121 | libJavaScriptCore_la_CFLAGS = \ |
| 122 | $(global_cflags) \ | 122 | $(global_cflags) \ |
| 123 | $(GLOBALDEPS_CFLAGS) \ | 123 | $(GLOBALDEPS_CFLAGS) \ |
| 124 | $(UNICODE_CFLAGS) \ | 124 | $(UNICODE_CFLAGS) \ |
| 125 | -fstrict-aliasing | 125 | -fno-strict-aliasing |
| 126 | 126 | ||
| 127 | libJavaScriptCore_la_CPPFLAGS = \ | 127 | libJavaScriptCore_la_CPPFLAGS = \ |
| 128 | $(global_cppflags) \ | 128 | $(global_cppflags) \ |
diff --git a/meta/packages/webkit/files/autogen.sh b/meta/packages/webkit/files/autogen.sh index a929538d20..a929538d20 100644..100755 --- a/meta/packages/webkit/files/autogen.sh +++ b/meta/packages/webkit/files/autogen.sh | |||
diff --git a/meta/packages/webkit/files/configure.ac b/meta/packages/webkit/files/configure.ac index 64f32dc689..3ab2baffb8 100644 --- a/meta/packages/webkit/files/configure.ac +++ b/meta/packages/webkit/files/configure.ac | |||
| @@ -263,11 +263,19 @@ AC_ARG_ENABLE(cross_document_messaging, | |||
| 263 | [],[enable_cross_document_messaging="yes"]) | 263 | [],[enable_cross_document_messaging="yes"]) |
| 264 | AC_MSG_RESULT([$enable_cross_document_messaging]) | 264 | AC_MSG_RESULT([$enable_cross_document_messaging]) |
| 265 | 265 | ||
| 266 | # check whether to enable HTML5 client-side session and persitent storage support | ||
| 267 | AC_MSG_CHECKING([whether to enable HTML5 client-side session and persistent storage support]) | ||
| 268 | AC_ARG_ENABLE(dom_storage, | ||
| 269 | AC_HELP_STRING([--enable-dom-storage], | ||
| 270 | [enable HTML5 client-side session and persistent storage support [default=no]]), | ||
| 271 | [],[enable_dom_storage="no"]) | ||
| 272 | AC_MSG_RESULT([$enable_dom_storage]) | ||
| 273 | |||
| 266 | # check whether to build with database support | 274 | # check whether to build with database support |
| 267 | AC_MSG_CHECKING([whether to enable HTML5 client-side storage support]) | 275 | AC_MSG_CHECKING([whether to enable HTML5 client-side database storage support]) |
| 268 | AC_ARG_ENABLE(database, | 276 | AC_ARG_ENABLE(database, |
| 269 | AC_HELP_STRING([--enable-database], | 277 | AC_HELP_STRING([--enable-database], |
| 270 | [enable HTML5 client-side storage support [default=yes]]), | 278 | [enable HTML5 client-side database storage support [default=yes]]), |
| 271 | [],[enable_database="yes"]) | 279 | [],[enable_database="yes"]) |
| 272 | AC_MSG_RESULT([$enable_database]) | 280 | AC_MSG_RESULT([$enable_database]) |
| 273 | 281 | ||
| @@ -498,6 +506,7 @@ AM_CONDITIONAL([USE_PANGO], [test "$with_font_backend" = "pango"]) | |||
| 498 | # WebKit feature conditionals | 506 | # WebKit feature conditionals |
| 499 | AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug" = "yes"]) | 507 | AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug" = "yes"]) |
| 500 | AM_CONDITIONAL([ENABLE_CROSS_DOCUMENT_MESSAGING],[test "$enable_cross_document_messaging" = "yes"]) | 508 | AM_CONDITIONAL([ENABLE_CROSS_DOCUMENT_MESSAGING],[test "$enable_cross_document_messaging" = "yes"]) |
| 509 | AM_CONDITIONAL([ENABLE_DOM_STORAGE],[test "$enable_dom_storage" = "yes"]) | ||
| 501 | AM_CONDITIONAL([ENABLE_DATABASE],[test "$enable_database" = "yes"]) | 510 | AM_CONDITIONAL([ENABLE_DATABASE],[test "$enable_database" = "yes"]) |
| 502 | AM_CONDITIONAL([ENABLE_ICONDATABASE],[test "$enable_icon_database" = "yes"]) | 511 | AM_CONDITIONAL([ENABLE_ICONDATABASE],[test "$enable_icon_database" = "yes"]) |
| 503 | AM_CONDITIONAL([ENABLE_XPATH],[test "$enable_xpath" = "yes"]) | 512 | AM_CONDITIONAL([ENABLE_XPATH],[test "$enable_xpath" = "yes"]) |
| @@ -526,27 +535,28 @@ echo " | |||
| 526 | WebKit was configured with the following options: | 535 | WebKit was configured with the following options: |
| 527 | 536 | ||
| 528 | Build configuration: | 537 | Build configuration: |
| 529 | Enable debugging (slow) : $enable_debug | 538 | Enable debugging (slow) : $enable_debug |
| 530 | Code coverage support : $enable_coverage | 539 | Code coverage support : $enable_coverage |
| 531 | Unicode backend : $unicode_backend | 540 | Unicode backend : $unicode_backend |
| 532 | HTTP backend : $with_http_backend | 541 | HTTP backend : $with_http_backend |
| 533 | Font backend : $with_font_backend | 542 | Font backend : $with_font_backend |
| 534 | Optimized memory allocator : $enable_fast_malloc | 543 | Optimized memory allocator : $enable_fast_malloc |
| 535 | Features: | 544 | Features: |
| 536 | HTML5 cross-document messaging : $enable_cross_document_messaging | 545 | HTML5 cross-document messaging : $enable_cross_document_messaging |
| 537 | HTML5 client-side storage support : $enable_database | 546 | HTML5 client-side session and persistent storage support : $enable_dom_storage |
| 538 | HTML5 video element support : $enable_video | 547 | HTML5 client-side database storage support : $enable_database |
| 539 | Icon database support : $enable_icon_database | 548 | HTML5 video element support : $enable_video |
| 540 | SVG support : $enable_svg | 549 | Icon database support : $enable_icon_database |
| 541 | SVG animation support : $enable_svg_animation | 550 | SVG support : $enable_svg |
| 542 | SVG filters support : $enable_svg_filters | 551 | SVG animation support : $enable_svg_animation |
| 543 | SVG fonts support : $enable_svg_fonts | 552 | SVG filters support : $enable_svg_filters |
| 544 | SVG foreign object support : $enable_svg_foreign_object | 553 | SVG fonts support : $enable_svg_fonts |
| 545 | SVG as image support : $enable_svg_as_image | 554 | SVG foreign object support : $enable_svg_foreign_object |
| 546 | SVG use element support : $enable_svg_use_element | 555 | SVG as image support : $enable_svg_as_image |
| 547 | XPATH support : $enable_xpath | 556 | SVG use element support : $enable_svg_use_element |
| 548 | XSLT support : $enable_xslt | 557 | XPATH support : $enable_xpath |
| 558 | XSLT support : $enable_xslt | ||
| 549 | GTK+ configuration: | 559 | GTK+ configuration: |
| 550 | GDK target : $with_target | 560 | GDK target : $with_target |
| 551 | Hildon UI extensions : $with_hildon | 561 | Hildon UI extensions : $with_hildon |
| 552 | " | 562 | " |
diff --git a/meta/packages/webkit/webkit-gtk_svn.bb b/meta/packages/webkit/webkit-gtk_svn.bb index c7a49fdd2f..2e7a0885c0 100644 --- a/meta/packages/webkit/webkit-gtk_svn.bb +++ b/meta/packages/webkit/webkit-gtk_svn.bb | |||
| @@ -4,7 +4,7 @@ SRCREV_FORMAT = "webcore-rwebkit" | |||
| 4 | 4 | ||
| 5 | # Yes, this is wrong... | 5 | # Yes, this is wrong... |
| 6 | PV = "0.1+svnr${SRCREV}" | 6 | PV = "0.1+svnr${SRCREV}" |
| 7 | PR = "r4" | 7 | PR = "r5" |
| 8 | 8 | ||
| 9 | SRC_URI = "\ | 9 | SRC_URI = "\ |
| 10 | svn://svn.webkit.org/repository/webkit/trunk/;module=JavaScriptCore;proto=http \ | 10 | svn://svn.webkit.org/repository/webkit/trunk/;module=JavaScriptCore;proto=http \ |
| @@ -27,7 +27,6 @@ inherit autotools pkgconfig | |||
| 27 | EXTRA_OECONF = "\ | 27 | EXTRA_OECONF = "\ |
| 28 | --enable-debug=no \ | 28 | --enable-debug=no \ |
| 29 | --enable-svg \ | 29 | --enable-svg \ |
| 30 | --enable-svg-fonts \ | ||
| 31 | --enable-icon-database=yes \ | 30 | --enable-icon-database=yes \ |
| 32 | " | 31 | " |
| 33 | 32 | ||
