# HG changeset patch # User jwe # Date 888820043 0 # Node ID 2837d1701fd9fe30969ef0c55bfd5621a2300bdb # Parent 4696773a14b1d8a50a319ec68db55f0c7fed90c7 [project @ 1998-03-02 06:27:23 by jwe] diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ Mon Mar 2 00:02:26 1998 John W. Eaton + * 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. diff --git a/configure.in b/configure.in --- 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], [])