pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

webkit-gtk: Use USE_OPENGL_OR_ES to enable/disable OpenGL



Module Name:	pkgsrc-wip
Committed By:	Leonardo Taccari <leot%NetBSD.org@localhost>
Pushed By:	leot
Date:		Sun May 29 17:56:51 2022 +0200
Changeset:	9e6e16dd0dd628f90d0e9cefc62ebcb6b27893ab

Modified Files:
	webkit-gtk/options.mk

Log Message:
webkit-gtk: Use USE_OPENGL_OR_ES to enable/disable OpenGL

The option ENABLE_OPENGL is no longer available.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=9e6e16dd0dd628f90d0e9cefc62ebcb6b27893ab

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 webkit-gtk/options.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diffs:
diff --git a/webkit-gtk/options.mk b/webkit-gtk/options.mk
index 79bf23e3f6..303629ca20 100644
--- a/webkit-gtk/options.mk
+++ b/webkit-gtk/options.mk
@@ -47,9 +47,9 @@ CMAKE_ARGS+=	-DENABLE_JIT=OFF
 # OpenGL support: enable support for GLX, WebGL and accelerated compositing
 #
 .if !empty(PKG_OPTIONS:Mopengl)
-CMAKE_ARGS+=	-DENABLE_OPENGL=ON
+CMAKE_ARGS+=	-DUSE_OPENGL_OR_ES=ON
 .else
-CMAKE_ARGS+=	-DENABLE_OPENGL=OFF
+CMAKE_ARGS+=	-DUSE_OPENGL_OR_ES=OFF
 .endif
 
 #


Home | Main Index | Thread Index | Old Index