Mercurial > hg > octave-nkf
changeset 1137:5579a520c519
[project @ 1995-02-26 00:47:35 by jwe]
author | jwe |
---|---|
date | Sun, 26 Feb 1995 00:48:56 +0000 |
parents | f0c564a57b2c |
children | b12322b4c0e8 |
files | acconfig.h configure.in |
diffstat | 2 files changed, 11 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/acconfig.h +++ b/acconfig.h @@ -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
--- a/configure.in +++ b/configure.in @@ -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)