# HG changeset patch # User jwe # Date 855863477 0 # Node ID 69552b5a81ab48c9c834cb8272671cd62107d150 # Parent 18192eea49732040979a24d9c831d2c267914bce [project @ 1997-02-13 19:51:17 by jwe] diff -r 18192eea4973 -r 69552b5a81ab readline/ChangeLog --- a/readline/ChangeLog Thu Feb 13 18:34:06 1997 +0000 +++ b/readline/ChangeLog Thu Feb 13 19:51:17 1997 +0000 @@ -1,3 +1,8 @@ +Thu Feb 13 13:50:21 1997 John W. Eaton + + * configure.in (TERMLIBS): Search in same order as in Octave's + top-level configure script. + Sat Jan 25 22:36:28 1997 John W. Eaton * Makefile.in (bin-dist): New target. diff -r 18192eea4973 -r 69552b5a81ab readline/configure.in --- a/readline/configure.in Thu Feb 13 18:34:06 1997 +0000 +++ b/readline/configure.in Thu Feb 13 19:51:17 1997 +0000 @@ -61,7 +61,7 @@ AC_PROG_RANLIB TERMLIBS="" -for termlib in termcap terminfo ncurses curses termlib; do +for termlib in ncurses curses termcap terminfo termlib; do AC_CHECK_LIB(${termlib}, tputs, [TERMLIBS="${TERMLIBS} -l${termlib}"]) case "${TERMLIBS}" in *-l${termlib}*)