Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support for ncurses libtinfo #48

Closed
fogti opened this issue Jun 22, 2018 · 0 comments
Closed

support for ncurses libtinfo #48

fogti opened this issue Jun 22, 2018 · 0 comments

Comments

@fogti
Copy link
Contributor

fogti commented Jun 22, 2018

I am submitting a Bug Report

Problem or Feature in Brief

NCurses supports to be compiled with separated tinfo (termcap) in '-ltinfo', but the configure.ac scripts doesn't check for this case.

Solution (if any)

existing code:

if eval "test x$CURSES_LIB_NAME = x"
then
    AC_CHECK_LIB(termcap, tgetent, CURSES_LIB="-ltermcap" CURSES_LIB_NAME=termcap)
fi

suggested code to be appended after the existing code:

if eval "test x$CURSES_LIB_NAME = x"
then
    AC_CHECK_LIB(tinfo, tgetent, CURSES_LIB="-ltinfo" CURSES_LIB_NAME=tinfo)
fi

Would you like to work on it?

yes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants