diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-18 10:40:13 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-09-29 14:58:32 -0700 |
commit | 5aee8567b8c0ec3d242424bdc88a32f3303e61c4 (patch) | |
tree | ec4c17da837b8f117c0927303d44bfb9b8009d82 /docs/markdown/Dependencies.md | |
parent | cb6ccf2632c3b09237b2bfe04687fa5d8b4c88ab (diff) | |
download | meson-5aee8567b8c0ec3d242424bdc88a32f3303e61c4.zip meson-5aee8567b8c0ec3d242424bdc88a32f3303e61c4.tar.gz meson-5aee8567b8c0ec3d242424bdc88a32f3303e61c4.tar.bz2 |
dependencies/curses: Add a system dependency
That calls find_library and has_header in conjunction to look for curses
implementations that are baked into the system without any other find
method.
Diffstat (limited to 'docs/markdown/Dependencies.md')
-rw-r--r-- | docs/markdown/Dependencies.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md index eccfe0a..a8ada1d 100644 --- a/docs/markdown/Dependencies.md +++ b/docs/markdown/Dependencies.md @@ -623,9 +623,9 @@ Curses (and ncurses) are a cross platform pain in the butt. Meson wraps up these dependencies in the `curses` dependency. This covers both `ncurses` (preferred) and other curses implementations. -`method` may be `auto`, `pkg-config`, or `config-tool` +`method` may be `auto`, `pkg-config`, `config-tool`, or `system`. -*New in 0.56.0* The `config-tool` method. +*New in 0.56.0* The `config-tool` and `system` methods. <hr> <a name="footnote1">1</a>: They may appear to be case-insensitive, if the |