Title: [259475] trunk/Source/ThirdParty/ANGLE
Revision
259475
Author
[email protected]
Date
2020-04-03 11:00:32 -0700 (Fri, 03 Apr 2020)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/ThirdParty/ANGLE/ANGLE.xcodeproj/project.pbxproj (259474 => 259475)


--- trunk/Source/ThirdParty/ANGLE/ANGLE.xcodeproj/project.pbxproj	2020-04-03 17:55:09 UTC (rev 259474)
+++ trunk/Source/ThirdParty/ANGLE/ANGLE.xcodeproj/project.pbxproj	2020-04-03 18:00:32 UTC (rev 259475)
@@ -452,7 +452,6 @@
 		5CB301461DE39F1A00D2C405 /* VertexArrayGL.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB301131DE39F1A00D2C405 /* VertexArrayGL.h */; };
 		5CB3014F1DE39F4700D2C405 /* DisplayCGL.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB301491DE39F4700D2C405 /* DisplayCGL.h */; };
 		5CB301511DE39F4700D2C405 /* PbufferSurfaceCGL.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB3014B1DE39F4700D2C405 /* PbufferSurfaceCGL.h */; };
-		5CB304921DE4156200D2C405 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CB3048D1DE4144400D2C405 /* OpenGL.framework */; };
 		5CB304931DE4156B00D2C405 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CB3048F1DE4145500D2C405 /* QuartzCore.framework */; };
 		5CB304941DE4157200D2C405 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CB3048B1DE4143500D2C405 /* CoreGraphics.framework */; };
 		5CB304961DE4157B00D2C405 /* entry_points_egl_ext.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB300BC1DE39E7500D2C405 /* entry_points_egl_ext.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -1518,7 +1517,6 @@
 			buildActionMask = 2147483647;
 			files = (
 				5CB304941DE4157200D2C405 /* CoreGraphics.framework in Frameworks */,
-				5CB304921DE4156200D2C405 /* OpenGL.framework in Frameworks */,
 				5CB304931DE4156B00D2C405 /* QuartzCore.framework in Frameworks */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;

Modified: trunk/Source/ThirdParty/ANGLE/ChangeLog (259474 => 259475)


--- trunk/Source/ThirdParty/ANGLE/ChangeLog	2020-04-03 17:55:09 UTC (rev 259474)
+++ trunk/Source/ThirdParty/ANGLE/ChangeLog	2020-04-03 18:00:32 UTC (rev 259475)
@@ -1,3 +1,17 @@
+2020-04-03  Keith Rollin  <[email protected]>
+
+        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:
+
 2020-04-03  David Kilzer  <[email protected]>
 
         [Xcode] Replace ASAN_OTHER_CFLAGS and ASAN_OTHER_CPLUSPLUSFLAGS with $(inherited)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to