diff options
author | Emil Velikov <[email protected]> | 2017-11-17 15:32:47 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-11-17 19:24:29 +0000 |
commit | d38e92b6e9d74b35f4b65fb5839a002d68aa04e2 (patch) | |
tree | 4ea5932cb355e0e16582ea794d8d8e9998a0f639 /meson.build | |
parent | 55c492132650599bf93c069f90c2f7255f95bb64 (diff) |
meson: explicitly disable the build system for 17.3.x
This build system is rather incomplete in the 17.3 branch, with multiple
bugs and user facing changes already addressed in master.
It's not shipped in the tarball and we don't want to receive bug reports
about 17.3, 18.0 is the release that I hope to have the meson build in
shape for.
Simply error() out, if anyone tries to use it.
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 92b875b1a10..f1a766f4aae 100644 --- a/meson.build +++ b/meson.build @@ -21,6 +21,8 @@ project('mesa', ['c', 'cpp'], version : '17.3.0-devel', license : 'MIT', default_options : ['c_std=c99', 'cpp_std=c++11']) +error('The meson build is unsupported for building mesa 17.3.x releases.') + # Arguments for the preprocessor, put these in a separate array from the C and # C++ (cpp in meson terminology) arguments since they need to be added to the # default arguments for both C and C++. |