aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-11-20 20:05:43 +0100
committerDavid Robillard <d@drobilla.net>2019-11-21 00:03:47 +0100
commit762c9c65f12b1cdd8f74c96683bb2a670ccdee5d (patch)
treeb1dfe362ade3373214b3b3c5bb4f5dbd730c19fd /wscript
parent2d1131ea819934e656cb4e17d00a781d5461a551 (diff)
downloadpugl-762c9c65f12b1cdd8f74c96683bb2a670ccdee5d.tar.gz
pugl-762c9c65f12b1cdd8f74c96683bb2a670ccdee5d.tar.bz2
pugl-762c9c65f12b1cdd8f74c96683bb2a670ccdee5d.zip
X11: Remove libGL dependency from GL backend
This was the only use of actual GL in the backend, and I'm relatively sure this flush is pointless anyway. If, for some bizarre reason, anyone really wants to run without double buffers, they are always free to flush themselves.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 23983ee..a1a317f 100644
--- a/wscript
+++ b/wscript
@@ -240,7 +240,7 @@ def build(bld):
if bld.env.HAVE_GL:
build_backend('x11', 'gl',
- uselib=['GL', 'GLX', 'X11'],
+ uselib=['GLX', 'X11'],
source=['pugl/detail/x11_gl.c'])
if bld.env.HAVE_CAIRO: