diff options
author | doko@ubuntu.com <doko@ubuntu.com> | 2012-06-30 15:32:23 (GMT) |
---|---|---|
committer | doko@ubuntu.com <doko@ubuntu.com> | 2012-06-30 15:32:23 (GMT) |
commit | f2967c73ad1f73bdb5320bf99a595761edd040ba (patch) | |
tree | b5fdf6d6abd064e26aa3b946d8c8f1e1e2a58bd3 /configure.ac | |
parent | 24ef3e967f4698da6c85778408e920f6437ed344 (diff) | |
download | cpython-f2967c73ad1f73bdb5320bf99a595761edd040ba.zip cpython-f2967c73ad1f73bdb5320bf99a595761edd040ba.tar.gz cpython-f2967c73ad1f73bdb5320bf99a595761edd040ba.tar.bz2 |
- check for libtinfo as a termcap library
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 3ad7f49..eb0763a 100644 --- a/configure.ac +++ b/configure.ac @@ -3904,7 +3904,7 @@ LIBS_no_readline=$LIBS # with setup.py. py_cv_lib_readline=no AC_MSG_CHECKING([how to link readline libs]) -for py_libtermcap in "" ncursesw ncurses curses termcap; do +for py_libtermcap in "" tinfo ncursesw ncurses curses termcap; do if test -z "$py_libtermcap"; then READLINE_LIBS="-lreadline" else |