Changeset 58178 in webkit


Ignore:
Timestamp:
Apr 23, 2010 11:31:37 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-23 Laszlo Gombos <Laszlo Gombos>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Disable Netscape plugin support for minimal configuration
https://bugs.webkit.org/show_bug.cgi?id=38026

No new tests, as there is no new functionality.

  • WebCore.pri:

2010-04-23 Laszlo Gombos <Laszlo Gombos>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Disable Netscape plugin support for minimal configuration
https://bugs.webkit.org/show_bug.cgi?id=38026

Pass the minimal configuration option to Qt build system
as part of the CONFIG variable.

  • Scripts/build-webkit:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r58177 r58178  
     12010-04-23  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Disable Netscape plugin support for minimal configuration
     6        https://bugs.webkit.org/show_bug.cgi?id=38026
     7
     8        No new tests, as there is no new functionality.
     9
     10        * WebCore.pri:
     11
    1122010-04-23  Shinichiro Hamaji  <hamaji@chromium.org>
    213
  • trunk/WebCore/WebCore.pri

    r58168 r58178  
    33} else {
    44    isEmpty(WC_GENERATED_SOURCES_DIR):WC_GENERATED_SOURCES_DIR = generated
     5}
     6
     7CONFIG(minimal) {
     8  DEFINES += ENABLE_NETSCAPE_PLUGIN_API=0
    59}
    610
  • trunk/WebKitTools/ChangeLog

    r58147 r58178  
     12010-04-23  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Disable Netscape plugin support for minimal configuration
     6        https://bugs.webkit.org/show_bug.cgi?id=38026
     7
     8        Pass the minimal configuration option to Qt build system
     9        as part of the CONFIG variable.
     10
     11        * Scripts/build-webkit:
     12
    1132010-04-22  Fumitoshi Ukai  <ukai@chromium.org>
    214
  • trunk/WebKitTools/Scripts/build-webkit

    r57540 r58178  
    351351        push @options, "DEFINES+=$_->{define}=${$_->{value}}" if ${$_->{value}} != $_->{default};
    352352    }
     353   
     354    if ($minimal) {
     355        push @options, "CONFIG+=minimal";
     356    }
    353357}
    354358
Note: See TracChangeset for help on using the changeset viewer.