Changeset 160215 in webkit


Ignore:
Timestamp:
Dec 6, 2013 3:08:03 AM (10 years ago)
Author:
berto@igalia.com
Message:

[GTK] Enable web audio by default
https://bugs.webkit.org/show_bug.cgi?id=124888

Reviewed by Martin Robinson.

When building with ./configure, enable_web_audio defaults to
"no". However the basic functionality has been working for months
so it's safe to enable it now.

  • Source/autotools/ReadCommandLineArguments.m4:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r160156 r160215  
     12013-12-06  Alberto Garcia  <berto@igalia.com>
     2
     3        [GTK] Enable web audio by default
     4        https://bugs.webkit.org/show_bug.cgi?id=124888
     5
     6        Reviewed by Martin Robinson.
     7
     8        When building with ./configure, enable_web_audio defaults to
     9        "no". However the basic functionality has been working for months
     10        so it's safe to enable it now.
     11
     12        * Source/autotools/ReadCommandLineArguments.m4:
     13
    1142013-12-04  Ryosuke Niwa  <rniwa@webkit.org>
    215
  • trunk/Source/autotools/ReadCommandLineArguments.m4

    r156328 r160215  
    148148AC_MSG_CHECKING([whether to enable Web Audio support])
    149149AC_ARG_ENABLE(web_audio,
    150     AC_HELP_STRING([--enable-web-audio], [enable support for Web Audio [default=no]]),
    151     [],
    152     [enable_web_audio="no"])
     150    AC_HELP_STRING([--enable-web-audio], [enable support for Web Audio [default=yes]]),
     151    [],
     152    [enable_web_audio="yes"])
    153153AC_MSG_RESULT([$enable_web_audio])
    154154
Note: See TracChangeset for help on using the changeset viewer.