[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 15:37:00 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit b596eae69517fd23251366cb3bf3bbe8f5dc43b6
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 9 12:05:06 2010 +0000

    2010-11-09  Gavin Peters  <gavinp at chromium.org>
    
            Reviewed by Xan Lopez.
    
            gtk platform doesn't support link prefetch
            https://bugs.webkit.org/show_bug.cgi?id=49234
    
            * configure.ac:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71620 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/ChangeLog b/ChangeLog
index 3c7d099..01a3b17 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-11-09  Gavin Peters  <gavinp at chromium.org>
+
+        Reviewed by Xan Lopez.
+
+        gtk platform doesn't support link prefetch
+        https://bugs.webkit.org/show_bug.cgi?id=49234
+
+        * configure.ac:
+
 2010-11-08  Xan Lopez  <xlopez at igalia.com>
 
         Reviewed by Martin Robinson.
diff --git a/configure.ac b/configure.ac
index 5ee1c1c..445d14e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -735,6 +735,17 @@ if test "$enable_opcode_stats" = "yes"; then
   AC_DEFINE([ENABLE_OPCODE_STATS], [1], [Define to enable Opcode statistics])
 fi
 
+# Link prefetch
+AC_MSG_CHECKING([whether to enable link prefetch support])
+AC_ARG_ENABLE([link-prefetch],
+  [AS_HELP_STRING([--enable-link-prefetch], [Enable Link prefetch support (default: disabled)])],
+  [],[enable_link_prefetch=no])
+AC_MSG_RESULT([$enable_link_prefetch])
+
+if test "$enable_link_prefetch" = "yes"; then 
+  AC_DEFINE([ENABLE_LINK_PREFETCH], [1], [Define to enable link prefetch support])
+fi
+
 # GObject Introspection
 AC_MSG_CHECKING([whether to enable GObject introspection support])
 AC_ARG_ENABLE([introspection],
@@ -1011,6 +1022,7 @@ Features:
  HTML5 video element support                              : $enable_video
  Icon database support                                    : $enable_icon_database
  Image resizer support                                    : $enable_image_resizer
+ Link prefetch support                                    : $enable_link_prefetch
  Opcode stats                                             : $enable_opcode_stats
  SharedWorkers support                                    : $enable_shared_workers
  Speech input support                                     : $enable_input_speech
@@ -1027,6 +1039,7 @@ Features:
  XHTML-MP support                                         : $enable_xhtmlmp
  XPATH support                                            : $enable_xpath
  XSLT support                                             : $enable_xslt
+
 GTK+ configuration:
  GTK+ version                                             : $with_gtk
  GDK target                                               : $with_target

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list