changeset 3161:2837d1701fd9

[project @ 1998-03-02 06:27:23 by jwe]
author jwe
date Mon, 02 Mar 1998 06:27:23 +0000
parents 4696773a14b1
children 7c96e85c76db
files ChangeLog configure.in
diffstat 2 files changed, 3 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 Mon Mar  2 00:02:26 1998  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
+	* configure.in: Don't disable GNU Info on cygwin32 systems.
+
 	* install-octave.in: New file.
 	* configure.in: Create install-octave.
 	* octMakefile.in (distclean, maintainer-clean): Delete install-octave.
--- a/configure.in
+++ b/configure.in
@@ -21,7 +21,7 @@
 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 ### 02111-1307, USA. 
 
-AC_REVISION($Revision: 1.300 $)
+AC_REVISION($Revision: 1.301 $)
 AC_PREREQ(2.9)
 AC_INIT(src/octave.cc)
 AC_CONFIG_HEADER(config.h)
@@ -105,15 +105,6 @@
 
 ### Allow the user disable support for GNU info.
 
-case "$canonical_host_type" in
-  *-*-cygwin32)
-    USE_GNU_INFO=false
-  ;;
-  *)
-    USE_GNU_INFO=true
-  ;;
-esac
-
 AC_ARG_ENABLE(info,
   [  --enable-info           use GNU info (default is yes)],
   [if test "$enableval" = no; then USE_GNU_INFO=false; fi], [])