From 383fdb76ff624d98f9764115c9e5b31d55c5b349 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Thu, 29 Jan 2026 16:23:18 +0100 Subject: [PATCH] meson: Drop unnecessary egl, gles feature defines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `HAVE_LIBEGL` and `HAVE_GLESV2` are not used, so drop them. Signed-off-by: Barnabás Pőcze Reviewed-by: Milan Zamazal Reviewed-by: Laurent Pinchart Reviewed-by: Bryan O'Donoghue --- src/libcamera/meson.build | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build index d1594358..c6c109a3 100644 --- a/src/libcamera/meson.build +++ b/src/libcamera/meson.build @@ -74,14 +74,6 @@ mesa_works = cc.check_header('EGL/egl.h', required: false) libegl = dependency('egl', required : false) libglesv2 = dependency('glesv2', required : false) -if libegl.found() - config_h.set('HAVE_LIBEGL', 1) -endif - -if libglesv2.found() - config_h.set('HAVE_GLESV2', 1) -endif - if mesa_works libcamera_internal_sources += files([ 'egl.cpp',