# HG changeset patch # User jwe # Date 793761016 0 # Node ID b12322b4c0e8d4d711b4c14b9e3553208cb519e3 # Parent 5579a520c51932db2b5c9c6f41e099d626a807f7 [project @ 1995-02-26 01:08:07 by jwe] diff -r 5579a520c519 -r b12322b4c0e8 acconfig.h --- a/acconfig.h Sun Feb 26 00:48:56 1995 +0000 +++ b/acconfig.h Sun Feb 26 01:10:16 1995 +0000 @@ -69,6 +69,12 @@ /* Use GNU info for extended help system. */ #undef USE_GNU_INFO +/* Use Karl Berry's path search library. */ +#undef USE_KPATHSEARCH + +/* Use GNU readline for command line editing and history. */ +#undef USE_READLINE + /* Define if math.h declares signgam. */ #undef SIGNGAM_DECLARED diff -r 5579a520c519 -r b12322b4c0e8 configure.in --- a/configure.in Sun Feb 26 00:48:56 1995 +0000 +++ b/configure.in Sun Feb 26 01:10:16 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.93 $) +AC_REVISION($Revision: 1.94 $) AC_PREREQ(2.0) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h kpathsea/c-auto.h) @@ -72,6 +72,24 @@ USE_GNU_INFO=true, USE_GNU_INFO=false) AC_SUBST(USE_GNU_INFO) +### Allow the user disable support for recursive directory searching +### using Karl Berry's pathsearch library. + +USE_KPATHSERACH=true +AC_ARG_ENABLE(pathsearch, + [ --enable-pathsearch use kpathsearch library (default is yes)], + USE_KPATHSEARCH=true, USE_KPATHSEARCH=false) +AC_SUBST(USE_GNU_KPATHSEARCH) + +### Allow the user disable support for command line editing using GNU +### readline. + +USE_READLINE=true +AC_ARG_ENABLE(readline, + [ --enable-readline use readline library (default is yes)], + USE_READLINE=true, USE_READLINE=false) +AC_SUBST(USE_READLINE) + ### some defaults AC_PREFIX_DEFAULT(/usr/local)