Skip to content

Commit

Permalink
ncurses: restore "auto" option values for clarity and backwards-compa…
Browse files Browse the repository at this point in the history
…tibility
  • Loading branch information
valgur committed Nov 17, 2023
1 parent d76664a commit 7c4d860
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions recipes/ncurses/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ class NCursesConan(ConanFile):
"with_extended_colors": [True, False],
"with_cxx": [True, False],
"with_progs": [True, False],
"with_ticlib": [True, False],
"with_ticlib": ["auto", True, False],
"with_reentrant": [True, False],
"with_tinfo": [True, False],
"with_tinfo": ["auto", True, False],
"with_pcre2": [True, False],
}
default_options = {
Expand All @@ -43,9 +43,9 @@ class NCursesConan(ConanFile):
"with_extended_colors": True,
"with_cxx": True,
"with_progs": True,
"with_ticlib": True,
"with_ticlib": "auto",
"with_reentrant": False,
"with_tinfo": True,
"with_tinfo": "auto",
"with_pcre2": False,
}

Expand Down

0 comments on commit 7c4d860

Please sign in to comment.