changeset 1138:b12322b4c0e8

[project @ 1995-02-26 01:08:07 by jwe]
author jwe
date Sun, 26 Feb 1995 01:10:16 +0000
parents 5579a520c519
children 80973a849607
files acconfig.h configure.in
diffstat 2 files changed, 25 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
 
--- 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)