summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 2 insertions, 4 deletions
diff --git a/wscript b/wscript
index 02117044f8..02b5a54cff 100644
--- a/wscript
+++ b/wscript
@@ -747,10 +747,8 @@ video_output_features = [
}, {
'name': '--standard-gl',
'desc': 'Desktop standard OpenGL support',
- 'func': compose_checks(
- check_statement('GL/gl.h', '(void)GL_RGB32F'), # arbitrary OpenGL 3.0 symbol
- check_statement('GL/gl.h', '(void)GL_LUMINANCE16') # arbitrary OpenGL legacy-only symbol
- ),
+ # arbitrary OpenGL 3.0 symbol, and an arbitrary OpenGL legacy-only symbol
+ 'func': check_statement('GL/gl.h', '(void)GL_RGB32F; (void)GL_LUMINANCE16'),
} , {
'name': '--standard-gles3',
'desc': 'Standard OpenGL ES 3.0 support',