From a1a70cda3ea79e8026842bc6090fa49db345dc4a Mon Sep 17 00:00:00 2001 From: SolDev69 Date: Sat, 9 Dec 2023 18:37:30 -0500 Subject: [PATCH] remove strict mako version check --- meson.build | 5 ----- 1 file changed, 5 deletions(-) diff --git a/meson.build b/meson.build index 54316d803b7..e6f7513562b 100644 --- a/meson.build +++ b/meson.build @@ -887,11 +887,6 @@ has_mako = run_command( ''' from distutils.version import StrictVersion import mako -assert StrictVersion(mako.__version__) >= StrictVersion("0.8.0") - ''', check: false) -if has_mako.returncode() != 0 - error('Python (3.x) mako module >= 0.8.0 required to build mesa.') -endif if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.4.6') error('When using GCC, version 4.4.6 or later is required.')