Changeset 230614 in webkit


Ignore:
Timestamp:
Apr 12, 2018 5:02:46 PM (6 years ago)
Author:
Kocsen Chung
Message:

Cherry-pick r230606. rdar://problem/39386359

Use -iframework to ensure that frameworks from user paths and system paths are
ordered appropriately
https://bugs.webkit.org/show_bug.cgi?id=184557
-and corresponding-
rdar://problem/39386359

Reviewed by Dean Jackson.

  • Configurations/WebKit.xcconfig:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@230606 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Location:
tags/Safari-606.1.13/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tags/Safari-606.1.13/Source/WebKit/ChangeLog

    r230603 r230614  
     12018-04-12  Kocsen Chung  <kocsen_chung@apple.com>
     2
     3        Cherry-pick r230606. rdar://problem/39386359
     4
     5    Use -iframework to ensure that frameworks from user paths and system paths are
     6    ordered appropriately
     7    https://bugs.webkit.org/show_bug.cgi?id=184557
     8    -and corresponding-
     9    rdar://problem/39386359
     10   
     11    Reviewed by Dean Jackson.
     12   
     13    * Configurations/WebKit.xcconfig:
     14   
     15   
     16   
     17    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@230606 268f45cc-cd09-0410-ab3c-d52691b4dbfc
     18
     19    2018-04-12  Beth Dakin  <bdakin@apple.com>
     20
     21            Use -iframework to ensure that frameworks from user paths and system paths are
     22            ordered appropriately
     23            https://bugs.webkit.org/show_bug.cgi?id=184557
     24            -and corresponding-
     25            rdar://problem/39386359
     26
     27            Reviewed by Dean Jackson.
     28
     29            * Configurations/WebKit.xcconfig:
     30
    1312018-04-12  Kocsen Chung  <kocsen_chung@apple.com>
    232
  • tags/Safari-606.1.13/Source/WebKit/Configurations/WebKit.xcconfig

    r230487 r230614  
    118118LIBWEBRTC_LIBRARY_DIR_USE_OVERRIDE_FRAMEWORKS_DIR_YES = $(WK_OVERRIDE_FRAMEWORKS_DIR);
    119119
    120 OTHER_LDFLAGS = $(inherited) -F"$(SDK_DIR)$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks" $(UNEXPORTED_SYMBOL_LDFLAGS) $(ASAN_OTHER_LDFLAGS) $(FRAMEWORK_AND_LIBRARY_LDFLAGS) $(WK_RELOCATABLE_FRAMEWORK_LDFLAGS);
     120OTHER_LDFLAGS = $(inherited) -iframework"$(SDK_DIR)$(SYSTEM_LIBRARY_DIR)/PrivateFrameworks" $(UNEXPORTED_SYMBOL_LDFLAGS) $(ASAN_OTHER_LDFLAGS) $(FRAMEWORK_AND_LIBRARY_LDFLAGS) $(WK_RELOCATABLE_FRAMEWORK_LDFLAGS);
    121121
    122122REEXPORTED_FRAMEWORK_NAMES = WebKitLegacy;
Note: See TracChangeset for help on using the changeset viewer.