Changeset 147108 in webkit


Ignore:
Timestamp:
Mar 28, 2013, 6:43:45 AM (12 years ago)
Author:
Philippe Normand
Message:

[GTK] run-launcher --gtk -2 fails on a WK2-only build
https://bugs.webkit.org/show_bug.cgi?id=113386

Reviewed by Carlos Garcia Campos.

  • Scripts/webkitdirs.pm:

(builtDylibPathForName): The WebKit2GTK .so name change from 1.0
version to 3.0. Reflect this change so the builtDylibPathForName
function doesn't fail to report the library as found.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r147081 r147108  
     12013-03-27  Philippe Normand  <pnormand@igalia.com>
     2
     3        [GTK] run-launcher --gtk -2 fails on a WK2-only build
     4        https://bugs.webkit.org/show_bug.cgi?id=113386
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * Scripts/webkitdirs.pm:
     9        (builtDylibPathForName): The WebKit2GTK .so name change from 1.0
     10        version to 3.0. Reflect this change so the builtDylibPathForName
     11        function doesn't fail to report the library as found.
     12
    1132013-03-28  Jaehun Lim  <ljaehun.lim@samsung.com>
    214
  • trunk/Tools/Scripts/webkitdirs.pm

    r143951 r147108  
    807807    if (isGtk()) {
    808808        # WebKitGTK+ for GTK2, WebKitGTK+ for GTK3, and WebKit2 respectively.
    809         my @libraries = ("libwebkitgtk-1.0", "libwebkitgtk-3.0", "libwebkit2gtk-1.0");
     809        my @libraries = ("libwebkitgtk-1.0", "libwebkitgtk-3.0", "libwebkit2gtk-3.0");
    810810        my $extension = isDarwin() ? ".dylib" : ".so";
    811811
Note: See TracChangeset for help on using the changeset viewer.