Changeset 151035 in webkit


Ignore:
Timestamp:
May 31, 2013 1:16:26 PM (11 years ago)
Author:
ap@apple.com
Message:

REGRESSION (r141445): MPEG-4 videos do not play on certain hardware configurations
https://bugs.webkit.org/show_bug.cgi?id=117089
<rdar://problem/13839717>

Reviewed by Mark Rowe.

  • Configurations/WebContentProcess.xcconfig: Statically link to a framework that uses an XPC service to work around a libxpc limitation on Lion.
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r151026 r151035  
     12013-05-31  Alexey Proskuryakov  <ap@apple.com>
     2
     3        REGRESSION (r141445): MPEG-4 videos do not play on certain hardware configurations
     4        https://bugs.webkit.org/show_bug.cgi?id=117089
     5        <rdar://problem/13839717>
     6
     7        Reviewed by Mark Rowe.
     8
     9        * Configurations/WebContentProcess.xcconfig: Statically link to a framework that
     10        uses an XPC service to work around a libxpc limitation on Lion.
     11
    1122013-05-31  Dean Jackson  <dino@apple.com>
    213
  • trunk/Source/WebKit2/Configurations/WebContentProcess.xcconfig

    r142806 r151035  
    2626PRODUCT_NAME = WebProcess;
    2727INFOPLIST_FILE = WebProcess/EntryPoint/mac/LegacyProcess/Info.plist;
     28
     29OTHER_LDFLAGS = $(OTHER_LDFLAGS) $(OTHER_LDFLAGS_$(PLATFORM_NAME));
     30OTHER_LDFLAGS_macosx = $(OTHER_LDFLAGS_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
     31OTHER_LDFLAGS_macosx_1070 = -framework VideoDecodeAcceleration;
     32OTHER_LDFLAGS_macosx_1080 = ;
     33OTHER_LDFLAGS_macosx_1090 = ;
     34OTHER_LDFLAGS_iphoneos = ;
     35OTHER_LDFLAGS_iphonesimulator = ;
Note: See TracChangeset for help on using the changeset viewer.