Skip to content

Commit d0deea3

Browse files
[3.15] gh-155911: Fix curses detection with libraries in LIBS (GH-156130)
AC_SEARCH_LIBS tries linking with no extra library first, so a curses library already in LIBS made the search report "none required", which then became the module's link flag. Search with only the libraries the module is linked with. (cherry picked from commit f74cdf8) Co-authored-by: Shamil <ashm.tech@proton.me>
1 parent f71fbc5 commit d0deea3

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Fix curses detection when a curses library is already in ``LIBS``.
2+
Patch by Shamil Abdulaev.

configure

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7149,8 +7149,9 @@ WITH_SAVE_ENV([
71497149
]))
71507150
71517151
# Check that we're able to link with crucial curses/panel functions. This
7152-
# also serves as a fallback in case pkg-config failed.
7153-
AS_VAR_APPEND([LIBS], [" $CURSES_LIBS $PANEL_LIBS"])
7152+
# also serves as a fallback in case pkg-config failed. Extension modules are
7153+
# not linked with LIBS, so exclude it to get the required libraries.
7154+
LIBS="$CURSES_LIBS $PANEL_LIBS"
71547155
AC_SEARCH_LIBS([initscr], [ncursesw ncurses],
71557156
[AS_VAR_IF([have_curses], [no],
71567157
[AS_VAR_SET([have_curses], [yes])

0 commit comments

Comments
 (0)