diff options
author | wm4 <wm4@nowhere> | 2017-04-26 17:09:16 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2017-04-26 17:09:16 +0200 |
commit | cb25bb5776b30e34ff7aa32c5e0a4f8862774e74 (patch) | |
tree | fe80b526664840964bf2c70441f4fd2dd30ffc33 /waftools | |
parent | 37820827223fcfaf398dbf5009a93ab6df972d6d (diff) |
build: remove checks for libGL
We don't need to link against libGL directly, nor do we need OpenGL
headers. The only thing we need is the windowing interop stuff, such as
libEGL.
Diffstat (limited to 'waftools')
-rw-r--r-- | waftools/checks/custom.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/waftools/checks/custom.py b/waftools/checks/custom.py index 36b6822bee..a2b4971cd2 100644 --- a/waftools/checks/custom.py +++ b/waftools/checks/custom.py @@ -144,7 +144,6 @@ def check_rpi(ctx, dependency_identifier): checks = [ check_pkg_config('bcm_host', uselib_store='bcm_host'), check_pkg_config('egl'), - check_pkg_config('glesv2'), check_cc(lib=['mmal_core', 'mmal_util', 'mmal_vc_client'], use=['bcm_host']), ] |