diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-02-10 14:06:38 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-02-14 01:34:25 +0100 |
commit | bd3c27ba7862d50b1bf54733e9f890f7084a9ea5 (patch) | |
tree | 0ccca56f5fbc3fde1bc00ee72e272b842329c62f /SConstruct | |
parent | 9e2b1b3b009f26fc24bbf02b4b66218f00133907 (diff) | |
download | redot-engine-bd3c27ba7862d50b1bf54733e9f890f7084a9ea5.tar.gz |
Allow building with system wide mbedtls on X11
Using builtin_mbedtls=yes is still the default as many distributions
do not ship with mbedtls included.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index d99f85a12e..ce86dd8830 100644 --- a/SConstruct +++ b/SConstruct @@ -181,6 +181,7 @@ opts.Add(BoolVariable('builtin_libtheora', "Use the builtin libtheora library", opts.Add(BoolVariable('builtin_libvorbis', "Use the builtin libvorbis library", True)) opts.Add(BoolVariable('builtin_libvpx', "Use the builtin libvpx library", True)) opts.Add(BoolVariable('builtin_libwebp', "Use the builtin libwebp library", True)) +opts.Add(BoolVariable('builtin_mbedtls', "Use the builtin mbedTLS library", True)) opts.Add(BoolVariable('builtin_opus', "Use the builtin opus library", True)) opts.Add(BoolVariable('builtin_pcre2', "Use the builtin pcre2 library)", True)) opts.Add(BoolVariable('builtin_recast', "Use the builtin recast library", True)) |