# HG changeset patch # User jwe # Date 793759736 0 # Node ID 5579a520c51932db2b5c9c6f41e099d626a807f7 # Parent f0c564a57b2cbb9d67612f5c14f2af69c1da8a41 [project @ 1995-02-26 00:47:35 by jwe] diff -r f0c564a57b2c -r 5579a520c519 acconfig.h --- a/acconfig.h Fri Feb 24 16:35:59 1995 +0000 +++ b/acconfig.h Sun Feb 26 00:48:56 1995 +0000 @@ -66,9 +66,8 @@ /* Define if you don't have QPSOL. */ #undef QPSOL_MISSING -/* Define to make Octave look for info files and function files in the - directory tree as the sources. */ -#undef RUN_IN_PLACE +/* Use GNU info for extended help system. */ +#undef USE_GNU_INFO /* Define if math.h declares signgam. */ #undef SIGNGAM_DECLARED diff -r f0c564a57b2c -r 5579a520c519 configure.in --- a/configure.in Fri Feb 24 16:35:59 1995 +0000 +++ b/configure.in Sun Feb 26 00:48:56 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.92 $) +AC_REVISION($Revision: 1.93 $) AC_PREREQ(2.0) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h kpathsea/c-auto.h) @@ -64,6 +64,14 @@ fi AC_SUBST(lite_kernel) +### Allow the user disable support for GNU info. + +USE_GNU_INFO=true +AC_ARG_ENABLE(info, + [ --enable-info use GNU info (default is yes)], + USE_GNU_INFO=true, USE_GNU_INFO=false) +AC_SUBST(USE_GNU_INFO) + ### some defaults AC_PREFIX_DEFAULT(/usr/local)