summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorleot <leot@pkgsrc.org>2019-04-20 16:39:13 +0000
committerleot <leot@pkgsrc.org>2019-04-20 16:39:13 +0000
commit8f0c4e16a7c8098caf9449eb501795fb955c901e (patch)
tree528c9693fdd8b52d41ae5add279d19b6f0956f7c /www
parent74e1272849cad861881c4c6aa5a83c988864fe4b (diff)
downloadpkgsrc-8f0c4e16a7c8098caf9449eb501795fb955c901e.tar.gz
webkit-gtk: Fix opengl option
ENABLE_WEBGL was renamed to ENABLE_OPENGL, adjust options.mk accordingly.
Diffstat (limited to 'www')
-rw-r--r--www/webkit-gtk/options.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/webkit-gtk/options.mk b/www/webkit-gtk/options.mk
index edabc35351d..b9e45dfafed 100644
--- a/www/webkit-gtk/options.mk
+++ b/www/webkit-gtk/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.16 2019/04/11 17:48:39 leot Exp $
+# $NetBSD: options.mk,v 1.17 2019/04/20 16:39:13 leot Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.webkit-gtk
@@ -43,9 +43,9 @@ CMAKE_ARGS+= -DENABLE_JIT=OFF
# OpenGL support: enable support for GLX, WebGL and accelerated compositing
#
.if !empty(PKG_OPTIONS:Mopengl)
-CMAKE_ARGS+= -DENABLE_WEBGL=ON
+CMAKE_ARGS+= -DENABLE_OPENGL=ON
.else
-CMAKE_ARGS+= -DENABLE_WEBGL=OFF
+CMAKE_ARGS+= -DENABLE_OPENGL=OFF
.endif
#