# HG changeset patch # User jwe # Date 793779124 0 # Node ID 322aa3f3aab0bcfd95adb146ff6e263de9a3763e # Parent 0f4270fea6e2ce8ebea80e751d0d8630a3a2f6a0 [project @ 1995-02-26 06:10:56 by jwe] diff -r 0f4270fea6e2 -r 322aa3f3aab0 acconfig.h --- a/acconfig.h Sun Feb 26 06:06:37 1995 +0000 +++ b/acconfig.h Sun Feb 26 06:12:04 1995 +0000 @@ -69,9 +69,6 @@ /* 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 diff -r 0f4270fea6e2 -r 322aa3f3aab0 configure.in --- a/configure.in Sun Feb 26 06:06:37 1995 +0000 +++ b/configure.in Sun Feb 26 06:12:04 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.94 $) +AC_REVISION($Revision: 1.95 $) AC_PREREQ(2.0) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h kpathsea/c-auto.h) @@ -72,15 +72,6 @@ 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.