From 810c9a4ebaf22e8f7c08805c1b829b3d77be7079 Mon Sep 17 00:00:00 2001 From: "Juan A. Suarez Romero" Date: Wed, 1 Aug 2018 17:48:11 +0200 Subject: [PATCH] scons: require scons 2.4 or greater There is a bug with scons 2.3, used in Travis, where it fails to detect some C functions. Reviewed-by: Andres Gomez --- SConstruct | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/SConstruct b/SConstruct index a59a8ea210e..6e034fb968f 100644 --- a/SConstruct +++ b/SConstruct @@ -27,6 +27,12 @@ import SCons.Util import common +####################################################################### +# Minimal scons version + +EnsureSConsVersion(2, 4) + + ####################################################################### # Configuration options -- 2.30.2