Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
2010-11-09 Gavin Peters <gavinp@chromium.org>
        Reviewed by Xan Lopez.

        gtk platform doesn't support link prefetch
        https://bugs.webkit.org/show_bug.cgi?id=49234

        * configure.ac:

Canonical link: https://commits.webkit.org/62107@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@71620 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
webkit-commit-queue committed Nov 9, 2010
1 parent 3a9458a commit 283e445
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
@@ -1,3 +1,12 @@
2010-11-09 Gavin Peters <gavinp@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@igalia.com>

Reviewed by Martin Robinson.
Expand Down
13 changes: 13 additions & 0 deletions configure.ac
Expand Up @@ -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],
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 283e445

Please sign in to comment.