Changeset 259475 in webkit


Ignore:
Timestamp:
Apr 3, 2020 11:00:32 AM (4 years ago)
Author:
Keith Rollin
Message:

Do not link with OpenGL on Apple platforms
https://bugs.webkit.org/show_bug.cgi?id=209946
<rdar://problem/61237956>

Reviewed by Sam Weinig.

OpenGL is not used in our build of ANGLE. Attempting to link with it
causes warnings, which can turn into errors in some cases (in
particular, when building with Xcode's "new" build system).

  • ANGLE.xcodeproj/project.pbxproj:
Location:
trunk/Source/ThirdParty/ANGLE
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/ThirdParty/ANGLE/ANGLE.xcodeproj/project.pbxproj

    r259466 r259475  
    453453                5CB3014F1DE39F4700D2C405 /* DisplayCGL.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB301491DE39F4700D2C405 /* DisplayCGL.h */; };
    454454                5CB301511DE39F4700D2C405 /* PbufferSurfaceCGL.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB3014B1DE39F4700D2C405 /* PbufferSurfaceCGL.h */; };
    455                 5CB304921DE4156200D2C405 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CB3048D1DE4144400D2C405 /* OpenGL.framework */; };
    456455                5CB304931DE4156B00D2C405 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CB3048F1DE4145500D2C405 /* QuartzCore.framework */; };
    457456                5CB304941DE4157200D2C405 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CB3048B1DE4143500D2C405 /* CoreGraphics.framework */; };
     
    15191518                        files = (
    15201519                                5CB304941DE4157200D2C405 /* CoreGraphics.framework in Frameworks */,
    1521                                 5CB304921DE4156200D2C405 /* OpenGL.framework in Frameworks */,
    15221520                                5CB304931DE4156B00D2C405 /* QuartzCore.framework in Frameworks */,
    15231521                        );
  • trunk/Source/ThirdParty/ANGLE/ChangeLog

    r259466 r259475  
     12020-04-03  Keith Rollin  <krollin@apple.com>
     2
     3        Do not link with OpenGL on Apple platforms
     4        https://bugs.webkit.org/show_bug.cgi?id=209946
     5        <rdar://problem/61237956>
     6
     7        Reviewed by Sam Weinig.
     8
     9        OpenGL is not used in our build of ANGLE. Attempting to link with it
     10        causes warnings, which can turn into errors in some cases (in
     11        particular, when building with Xcode's "new" build system).
     12
     13        * ANGLE.xcodeproj/project.pbxproj:
     14
    1152020-04-03  David Kilzer  <ddkilzer@apple.com>
    216
Note: See TracChangeset for help on using the changeset viewer.