Changeset 47324 in webkit


Ignore:
Timestamp:
Aug 15, 2009 2:25:18 PM (15 years ago)
Author:
weinig@apple.com
Message:

[GTK] Added EventSource to the build (default on).
https://bugs.webkit.org/show_bug.cgi?id=14997

Patch by Adam Bergkvist <adam.bergkvist@ericsson.com> on 2009-08-14
Reviewed by Sam Weinig.

  • configure.ac:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r47309 r47324  
     12009-08-14  Adam Bergkvist  <adam.bergkvist@ericsson.com>
     2
     3        Reviewed by Sam Weinig.
     4
     5        [GTK] Added EventSource to the build (default on).
     6        https://bugs.webkit.org/show_bug.cgi?id=14997
     7
     8        * configure.ac:
     9
    1102009-08-14  Jan Michael Alonzo  <jmalonzo@webkit.org>
    211
  • trunk/configure.ac

    r47129 r47324  
    347347              [],[enable_database="yes"])
    348348AC_MSG_RESULT([$enable_database])
     349
     350# check whether to build with server-sent events support
     351AC_MSG_CHECKING([whether to enable HTML5 server-sent events support])
     352AC_ARG_ENABLE(eventsource,
     353              AC_HELP_STRING([--enable-eventsource],
     354                             [enable HTML5 server-sent events support [default=yes]]),
     355              [],[enable_eventsource="yes"])
     356AC_MSG_RESULT([$enable_eventsource])
    349357
    350358# check whether to build with icon database support
     
    684692AM_CONDITIONAL([ENABLE_DOM_STORAGE],[test "$enable_dom_storage" = "yes"])
    685693AM_CONDITIONAL([ENABLE_DATABASE],[test "$enable_database" = "yes"])
     694AM_CONDITIONAL([ENABLE_EVENTSOURCE],[test "$enable_eventsource" = "yes"])
    686695AM_CONDITIONAL([ENABLE_ICONDATABASE],[test "$enable_icon_database" = "yes"])
    687696AM_CONDITIONAL([ENABLE_XPATH],[test "$enable_xpath" = "yes"])
     
    740749 HTML5 client-side database storage support               : $enable_database
    741750 HTML5 ruby support                                       : $enable_ruby
     751 HTML5 server-sent events support                         : $enable_eventsource
    742752 HTML5 video element support                              : $enable_video
    743753 Icon database support                                    : $enable_icon_database
Note: See TracChangeset for help on using the changeset viewer.