# HG changeset patch # User Ryan C. Gordon # Date 1021517109 0 # Node ID 9415dcace296cfba036db043e4b429a97a730b61 # Parent 6fb0f6dcd91e9d871605423750303d1d77697f2b readline detection fixes by Edward Rudd. diff -r 6fb0f6dcd91e -r 9415dcace296 configure.in --- a/configure.in Fri May 10 17:36:52 2002 +0000 +++ b/configure.in Thu May 16 02:45:09 2002 +0000 @@ -174,13 +174,13 @@ , enable_readline=yes) if test x$enable_readline = xyes; then AC_CHECK_HEADER(readline/readline.h, have_readline_hdr=yes) - AC_CHECK_LIB(readline, readline, have_readline_lib=yes) + AC_CHECK_LIB(readline, readline, have_readline_lib=yes, , -lcurses) AC_CHECK_HEADER(readline/history.h, have_history_hdr=yes) - AC_CHECK_LIB(readline, add_history, have_history_lib=yes) + AC_CHECK_LIB(readline, add_history, have_history_lib=yes, , -lcurses) if test x$have_readline_hdr = xyes -a x$have_readline_lib = xyes; then if test x$have_history_hdr = xyes -a x$have_history_lib = xyes; then AC_DEFINE(PHYSFS_HAVE_READLINE) - LIBS="$LIBS -lreadline" + LIBS="$LIBS -lreadline -lcurses" fi fi fi