Changeset 140431 in webkit


Ignore:
Timestamp:
Jan 22, 2013 9:17:13 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

[Autotools] Remove the Canvas Path configuration option
https://bugs.webkit.org/show_bug.cgi?id=107537

Reviewed by Martin Robinson.

.:

  • configure.ac: Remove the configuration option for the Canvas Path

feature as this is not in line with the new guidelines about feature
enablement in the autotools build system.

Source/WebCore:

No new tests - no new testable functionality.

  • GNUmakefile.am: Remove the Automake conditional analysis, the related

configuration option is being removed as well.

  • GNUmakefile.features.am.in: Add the ENABLE_CANVAS_PATH feature define,

defaulting to 0 in release builds (but is disabled in development builds
of the GTK port as well at the moment).

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r140430 r140431  
     12013-01-22  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [Autotools] Remove the Canvas Path configuration option
     4        https://bugs.webkit.org/show_bug.cgi?id=107537
     5
     6        Reviewed by Martin Robinson.
     7
     8        * configure.ac: Remove the configuration option for the Canvas Path
     9        feature as this is not in line with the new guidelines about feature
     10        enablement in the autotools build system.
     11
    1122013-01-22  Zan Dobersek  <zdobersek@igalia.com>
    213
  • trunk/Source/WebCore/ChangeLog

    r140429 r140431  
     12013-01-22  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [Autotools] Remove the Canvas Path configuration option
     4        https://bugs.webkit.org/show_bug.cgi?id=107537
     5
     6        Reviewed by Martin Robinson.
     7
     8        No new tests - no new testable functionality.
     9
     10        * GNUmakefile.am: Remove the Automake conditional analysis, the related
     11        configuration option is being removed as well.
     12        * GNUmakefile.features.am.in: Add the ENABLE_CANVAS_PATH feature define,
     13        defaulting to 0 in release builds (but is disabled in development builds
     14        of the GTK port as well at the moment).
     15
    1162013-01-18  Stephen Chenney  <schenney@chromium.org>
    217
  • trunk/Source/WebCore/GNUmakefile.am

    r140377 r140431  
    145145
    146146# ----
    147 # Canvas Path
    148 # ----
    149 if ENABLE_CANVAS_PATH
    150 feature_defines_overrides += ENABLE_CANVAS_PATH=1
    151 else
    152 feature_defines_overrides += ENABLE_CANVAS_PATH=0
    153 endif # END ENABLE_CANVAS_PATH
    154 
    155 # ----
    156147# Gamepad support
    157148# ---
  • trunk/Source/WebCore/GNUmakefile.features.am.in

    r140407 r140431  
    44        ENABLE_BATTERY_STATUS=0 \
    55        ENABLE_BLOB=1 \
     6        ENABLE_CANVAS_PATH=0 \
    67        ENABLE_CANVAS_PROXY=0 \
    78        ENABLE_CHANNEL_MESSAGING=1 \
  • trunk/configure.ac

    r140430 r140431  
    646646AC_MSG_RESULT([$enable_accelerated_compositing])
    647647
    648 # check whether to enable Canvas Path support
    649 AC_MSG_CHECKING([whether to enable Canvas Path support])
    650 AC_ARG_ENABLE(canvas-path,
    651               AC_HELP_STRING([--enable-canvas-path],
    652                              [enable Canvas Path support [default=no]]),
    653               [],[enable_canvas_path="no"])
    654 AC_MSG_RESULT([$enable_canvas_path])
    655 
    656648# check whether to enable Gamepad support
    657649AC_MSG_CHECKING([whether to enable Gamepad support])
     
    11721164AM_CONDITIONAL([ENABLE_WEBGL],[test "$enable_webgl" = "yes"])
    11731165AM_CONDITIONAL([ENABLE_GAMEPAD],[test "$enable_gamepad" = "yes"])
    1174 AM_CONDITIONAL([ENABLE_CANVAS_PATH],[test "$enable_canvas_path" = "yes"])
    11751166AM_CONDITIONAL([ENABLE_XSLT],[test "$enable_xslt" = "yes"])
    11761167AM_CONDITIONAL([ENABLE_GEOLOCATION], [test "$enable_geolocation" = "yes"])
     
    11881179AM_CONDITIONAL([ENABLE_CSS_FILTERS],[test "$enable_css_filters" = "yes"])
    11891180AM_CONDITIONAL([ENABLE_CSS_SHADERS],[test "$enable_css_shaders" = "yes"])
    1190 AM_CONDITIONAL([ENABLE_CANVAS_PATH],[test "$enable_canvas_path" = "yes"])
    11911181
    11921182# Gtk conditionals
     
    12531243 WebKit2 support                                          : $enable_webkit2
    12541244 Accelerated Compositing                                  : $enable_accelerated_compositing
    1255  Canvas Path                                              : $enable_canvas_path
    12561245 Gamepad support                                          : $enable_gamepad
    12571246 Geolocation support                                      : $enable_geolocation
Note: See TracChangeset for help on using the changeset viewer.