diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-30 09:33:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-30 09:33:13 -0700 |
commit | ce2d927a7963caea26e858bead3123adc274606c (patch) | |
tree | 4759063f5127e8b80999705fa930ce1be7493b3e /docs/markdown/Dependencies.md | |
parent | 137c3124e23f0f589c8855aafcd7897aa6d8c544 (diff) | |
parent | a3106776a681201b166d019a3cf27cfe07f30a87 (diff) | |
download | meson-ce2d927a7963caea26e858bead3123adc274606c.zip meson-ce2d927a7963caea26e858bead3123adc274606c.tar.gz meson-ce2d927a7963caea26e858bead3123adc274606c.tar.bz2 |
Merge pull request #7757 from dcbaker/submit/curses-dependency
Extend the Curses dependency to use config tools and hand rolled search
Diffstat (limited to 'docs/markdown/Dependencies.md')
-rw-r--r-- | docs/markdown/Dependencies.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md index efd8728..a8ada1d 100644 --- a/docs/markdown/Dependencies.md +++ b/docs/markdown/Dependencies.md @@ -615,6 +615,18 @@ on these OSes to link with the bundled version. *New in 0.54.0* the `system` method. +## Curses + +*(Since 0.54.0)* + +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`, `config-tool`, or `system`. + +*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 underlying file system happens to be case-insensitive. |