diff options
author | Juan A. Suarez Romero <jasuarez@igalia.com> | 2018-08-01 17:48:11 +0200 |
---|---|---|
committer | Juan A. Suarez Romero <jasuarez@igalia.com> | 2018-08-01 20:33:00 +0200 |
commit | 810c9a4ebaf22e8f7c08805c1b829b3d77be7079 (patch) | |
tree | 779d6de40b650cc4764453f4cc406361e5a9b1b7 | |
parent | fea0b920426ae040d6fde0c6db79f0f8b4db3100 (diff) | |
download | mesa-810c9a4ebaf22e8f7c08805c1b829b3d77be7079.tar.gz |
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 <agomez@igalia.com>
-rw-r--r-- | SConstruct | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index a59a8ea210e..6e034fb968f 100644 --- a/SConstruct +++ b/SConstruct @@ -28,6 +28,12 @@ import SCons.Util import common ####################################################################### +# Minimal scons version + +EnsureSConsVersion(2, 4) + + +####################################################################### # Configuration options opts = Variables('config.py') |