changeset 1151:8b3d86f7d1da

[project @ 1995-02-26 23:38:34 by jwe]
author jwe
date Sun, 26 Feb 1995 23:38:34 +0000
parents f0e54e93d420
children 8cb9792efbf4
files configure.in
diffstat 1 files changed, 9 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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)