From 9d80c08441edf3e8da5180fb42eda71878e9c411 Mon Sep 17 00:00:00 2001 From: Ilya Tumaykin Date: Wed, 26 Apr 2017 17:43:51 +0300 Subject: build: rely on internal GL headers for rpi check Since mpv ships all the required OpenGL defines now, rpi check doesn't need to check system GL headers. --- waftools/checks/custom.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'waftools/checks') diff --git a/waftools/checks/custom.py b/waftools/checks/custom.py index 8ed06e5b24..36b6822bee 100644 --- a/waftools/checks/custom.py +++ b/waftools/checks/custom.py @@ -146,10 +146,6 @@ def check_rpi(ctx, dependency_identifier): check_pkg_config('egl'), check_pkg_config('glesv2'), check_cc(lib=['mmal_core', 'mmal_util', 'mmal_vc_client'], use=['bcm_host']), - # We still need all OpenGL symbols, because the vo_opengl code is - # generic and supports anything from GLES2/OpenGL 2.1 to OpenGL 4 core. - 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 ] ret = all((fn(ctx, dependency_identifier) for fn in checks)) -- cgit v1.2.3