From 56eaf80c4b232f8f2a78c467fb9f1a404282d420 Mon Sep 17 00:00:00 2001 From: Michael Fisher Date: Tue, 16 Nov 2010 08:12:00 +0100 Subject: [PATCH] SCons: look for gdlmm instead of gdl --- admin/scons/Platform.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/admin/scons/Platform.py b/admin/scons/Platform.py index 3614e2561..4961ef34f 100644 --- a/admin/scons/Platform.py +++ b/admin/scons/Platform.py @@ -126,6 +126,10 @@ def configure(env): if not conf.CheckPkgConfig('gdl-lum', verGDL, alias='gdl'): problems.append('GNOME Docking Library not found. We either need a sufficiently recent GDL ' 'version (>=%s), or the custom package "gdl-lum" from Lumiera.org.' % verGDL) + verGDLmm = '2.30.0' + if not conf.CheckPkgConfig('gdlmm-1.0', verGDLmm, alias='gdlmm'): + problems.append('GNOME Docking Library not found. We need a sufficiently recent GDL mm-bindings ' + 'version (>=%s).' % verGDL) if not conf.CheckPkgConfig('librsvg-2.0', '2.18.1'): problems.append('Need rsvg Library for rendering icons.')