Changeset 142634 in webkit


Ignore:
Timestamp:
Feb 12, 2013 9:04:08 AM (11 years ago)
Author:
Martin Robinson
Message:

[GTK] Remove the enable-debug-feature configuration option
https://bugs.webkit.org/show_bug.cgi?id=109539

Reviewed by Philippe Normand.

Remove the --enable-debug-feature option from configuration. It doesn't
do anything that --enable-debug doesn't.

  • Source/autotools/PrintBuildConfiguration.m4: Remove references to --enable-debug-features.
  • Source/autotools/ReadCommandLineArguments.m4: Ditto.
  • Source/autotools/SetupAutoconfHeader.m4: Ditto.
  • Source/autotools/SetupAutomake.m4: Ditto.
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r142600 r142634  
     12013-02-12  Martin Robinson  <mrobinson@igalia.com>
     2
     3        [GTK] Remove the enable-debug-feature configuration option
     4        https://bugs.webkit.org/show_bug.cgi?id=109539
     5
     6        Reviewed by Philippe Normand.
     7
     8        Remove the --enable-debug-feature option from configuration. It doesn't
     9        do anything that --enable-debug doesn't.
     10
     11        * Source/autotools/PrintBuildConfiguration.m4: Remove references to --enable-debug-features.
     12        * Source/autotools/ReadCommandLineArguments.m4: Ditto.
     13        * Source/autotools/SetupAutoconfHeader.m4: Ditto.
     14        * Source/autotools/SetupAutomake.m4: Ditto.
     15
    1162013-02-12  Zan Dobersek  <zdobersek@igalia.com>
    217
  • trunk/Source/autotools/PrintBuildConfiguration.m4

    r142284 r142634  
    77 Enable debugging (slow)                                  : $enable_debug
    88 Compile with debug symbols (slow)                        : $enable_debug_symbols
    9  Enable debug features (slow)                             : $enable_debug_features
    109 Enable GCC build optimization                            : $enable_optimizations
    1110 Code coverage support                                    : $enable_coverage
  • trunk/Source/autotools/ReadCommandLineArguments.m4

    r142284 r142634  
    215215AC_MSG_RESULT([$enable_accelerated_compositing])
    216216
    217 AC_MSG_CHECKING([whether to enable debug features])
    218 AC_ARG_ENABLE(debug_features,
    219     AC_HELP_STRING([--enable-debug-features], [enable debug features default=no, default=yes for debug builds]),
    220     [],
    221     [
    222         if test "$enable_debug" = "yes"; then
    223             enable_debug_features="yes";
    224         else
    225              enable_debug_features="no";
    226          fi
    227     ])
    228 AC_MSG_RESULT([$enable_debug_features])
    229 
    230217AC_MSG_CHECKING([whether to enable JIT compilation])
    231218AC_ARG_ENABLE(jit, AS_HELP_STRING([--enable-jit], [Enable JIT compilation (default: autodetect)]))
  • trunk/Source/autotools/SetupAutoconfHeader.m4

    r142395 r142634  
    77AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [The gettext catalog name])
    88
    9 if test "$enable_debug_features" = "yes"; then
     9if test "$enable_debug" = "yes"; then
    1010    AC_DEFINE([GDK_PIXBUF_DISABLE_DEPRECATED], [1], [ ])
    1111    AC_DEFINE([GDK_DISABLE_DEPRECATED], [1], [ ])
     
    1313    AC_DEFINE([PANGO_DISABLE_DEPRECATED], [1], [ ])
    1414else
    15     AC_DEFINE([NDEBUG], [1], [Define to disable debugging features])
     15    AC_DEFINE([NDEBUG], [1], [Define to disable debugging])
    1616fi
    1717
     
    6969if test "$have_gstreamer" = "yes"; then
    7070    AC_DEFINE([WTF_USE_GSTREAMER], [1], [ ])
    71     if test "$enable_debug_features" = "yes"; then
     71    if test "$enable_debug" = "yes"; then
    7272        AC_DEFINE([GST_DISABLE_DEPRECATED], [1], [ ])
    7373    fi
  • trunk/Source/autotools/SetupAutomake.m4

    r142284 r142634  
    5454
    5555# WebKit feature conditionals.
    56 AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug_features" = "yes"])
     56AM_CONDITIONAL([ENABLE_DEBUG],[test "$enable_debug" = "yes"])
    5757AM_CONDITIONAL([ENABLE_WEBGL],[test "$enable_webgl" = "yes"])
    5858AM_CONDITIONAL([ENABLE_GAMEPAD],[test "$enable_gamepad" = "yes"])
Note: See TracChangeset for help on using the changeset viewer.