summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorJami Kettunen <jami.kettunen@protonmail.com>2022-11-11 01:46:10 +0200
committerMarge Bot <emma+marge@anholt.net>2022-11-17 23:57:05 +0000
commitf3a9076e51d43f76e0aee81659d661b5b60c0756 (patch)
tree0e735a609e1617f3d044ec52782d7b6c07a7b924 /meson.build
parentd1e1911d82b1f03dbd1becf5c62b56a0350f97d4 (diff)
downloadmesa-f3a9076e51d43f76e0aee81659d661b5b60c0756.tar.gz
freedreno: Find curses properly for building fdperf
Upstream ncurses doesn't ship any legacy ncurses.pc pkg-config symlinks (just ncursesw.pc) which Void Linux strictly follows[1] for example. Meson (since 0.54) has a generic curses dependency which works perfectly in this case[2], thus also bump the toplevel minimum meson version from 0.53. [1] https://github.com/void-linux/void-packages/tree/master/srcpkgs/ncurses [2] https://mesonbuild.com/Dependencies.html#curses Signed-off-by: Jami Kettunen <jami.kettunen@protonmail.com> Reviewed-by: Chia-I Wu <olvaffe@gmail.com> Reviewed-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19664>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index bda3d736992..1aebd04e5d7 100644
--- a/meson.build
+++ b/meson.build
@@ -26,7 +26,7 @@ project(
check : true
).stdout(),
license : 'MIT',
- meson_version : '>= 0.53',
+ meson_version : '>= 0.54',
default_options : ['buildtype=debugoptimized', 'b_ndebug=if-release', 'c_std=c11', 'cpp_std=c++17', 'rust_std=2021']
)