From: Stelian Pop Date: Fri, 30 Jun 2000 09:12:14 +0000 (+0000) Subject: Added -ltermcap to readline enabled restore X-Git-Tag: release_0_4b18~1 X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=commitdiff_plain;h=5e04cc92ff552a5df28ce755598ecc22cdb80b97 Added -ltermcap to readline enabled restore --- diff --git a/CHANGES b/CHANGES index 6273892..f5126aa 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,4 @@ -$Id: CHANGES,v 1.67 2000/06/30 09:00:38 stelian Exp $ +$Id: CHANGES,v 1.68 2000/06/30 09:12:14 stelian Exp $ Changes between versions 0.4b17 and 0.4b18 (released June 30, 2000) =================================================================== @@ -25,6 +25,11 @@ Changes between versions 0.4b17 and 0.4b18 (released June 30, 2000) to make network backups should read first the man page of dump and enable the suid bit manually. +5. Added -ltermcap to the compile parameters for restore + when using readline support, in order to make the compile + process work on some systems (SuSE ?). Thanks to + Patrik Schindler for reporting the bug. + Changes between versions 0.4b16 and 0.4b17 (released June 1st, 2000) ==================================================================== diff --git a/THANKS b/THANKS index 49d4822..c66d84e 100644 --- a/THANKS +++ b/THANKS @@ -1,4 +1,4 @@ -$Id: THANKS,v 1.30 2000/06/26 08:50:16 stelian Exp $ +$Id: THANKS,v 1.31 2000/06/30 09:12:14 stelian Exp $ Dump and restore were written by the people of the CSRG at the University of California, Berkeley. @@ -21,6 +21,7 @@ dump-0.4b5). Thanks to people who reported problems with the port, sent patches, and suggested various improvements. Here is a partial list of them (if I have forgotten someone, please complain): +Stan Bubrouski satan@fastdial.net Stephen Carr sgcarr@civeng.adelaide.edu.au Rob Cermak cermak@ahab.rutgers.edu Isaac Chuang ike@isl.stanford.edu @@ -36,6 +37,7 @@ Christian Haul haul@informatik.tu-darmstadt.de Jean-Paul van der Jagt jeanpaul@dutepp0.et.tudelft.nl Eric Jergensen eric@dvns.com Jeff Johnson jbj@redhat.com +Charles Karney karney@users.sourceforge.net Henry Katz hkatz@hkatz.dialup.access.net Klaus Kudielka kkudielk@cacofonix.nt.tuwien.ac.at Thorsten Kukuk kukuk@suse.de diff --git a/configure b/configure index 370272e..e8d4d7c 100755 --- a/configure +++ b/configure @@ -1358,7 +1358,7 @@ if test "${enable_readline+set}" = set; then then READLINE="" else - READLINE="-lreadline" + READLINE="-lreadline -ltermcap" cat >> confdefs.h <<\EOF #define HAVE_READLINE 1 EOF diff --git a/configure.in b/configure.in index 1bc05a6..e41cf07 100644 --- a/configure.in +++ b/configure.in @@ -100,7 +100,7 @@ if test "$enableval" = "no" then READLINE="" else - READLINE="-lreadline" + READLINE="-lreadline -ltermcap" AC_DEFINE(HAVE_READLINE) fi ,