# HG changeset patch # User jwe # Date 793841914 0 # Node ID 8b3d86f7d1da9bd2fbe6434a01aaa0654882941a # Parent f0e54e93d420ebee5b30f71b435822b92237c455 [project @ 1995-02-26 23:38:34 by jwe] diff -r f0e54e93d420 -r 8b3d86f7d1da configure.in --- a/configure.in Sun Feb 26 23:32:25 1995 +0000 +++ b/configure.in Sun Feb 26 23:38:34 1995 +0000 @@ -21,7 +21,7 @@ ### along with Octave; see the file COPYING. If not, write to the Free ### Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -AC_REVISION($Revision: 1.98 $) +AC_REVISION($Revision: 1.99 $) AC_PREREQ(2.0) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h) @@ -71,9 +71,11 @@ [ --enable-info use GNU info (default is yes)], USE_GNU_INFO=true, USE_GNU_INFO=false) AC_SUBST(USE_GNU_INFO) -LIBINFO= +LIBINFO=../info/libinfo.a if $USE_GNU_INFO; then - LIBINFO=../info/libinfo.a + true +else + LIBINFO= fi AC_SUBST(LIBINFO) @@ -85,9 +87,11 @@ [ --enable-readline use readline library (default is yes)], USE_READLINE=true, USE_READLINE=false) AC_SUBST(USE_READLINE) -LIBREADLINE= +LIBREADLINE=../readline/libreadline.a if $USE_READLINE; then - LIBREADLINE=../readline/libreadline.a + true +else + LIBREADLINE= fi AC_SUBST(LIBREADLINE)