comparison configure.in @ 1144:322aa3f3aab0

[project @ 1995-02-26 06:10:56 by jwe]
author jwe
date Sun, 26 Feb 1995 06:12:04 +0000
parents b12322b4c0e8
children 185b16c1be3d
comparison
equal deleted inserted replaced
1143:0f4270fea6e2 1144:322aa3f3aab0
19 ### 19 ###
20 ### You should have received a copy of the GNU General Public License 20 ### You should have received a copy of the GNU General Public License
21 ### along with Octave; see the file COPYING. If not, write to the Free 21 ### along with Octave; see the file COPYING. If not, write to the Free
22 ### Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 22 ### Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 23
24 AC_REVISION($Revision: 1.94 $) 24 AC_REVISION($Revision: 1.95 $)
25 AC_PREREQ(2.0) 25 AC_PREREQ(2.0)
26 AC_INIT(src/octave.cc) 26 AC_INIT(src/octave.cc)
27 AC_CONFIG_HEADER(config.h kpathsea/c-auto.h) 27 AC_CONFIG_HEADER(config.h kpathsea/c-auto.h)
28 28
29 AC_DEFINE(OCTAVE_SOURCE, 1) 29 AC_DEFINE(OCTAVE_SOURCE, 1)
69 USE_GNU_INFO=true 69 USE_GNU_INFO=true
70 AC_ARG_ENABLE(info, 70 AC_ARG_ENABLE(info,
71 [ --enable-info use GNU info (default is yes)], 71 [ --enable-info use GNU info (default is yes)],
72 USE_GNU_INFO=true, USE_GNU_INFO=false) 72 USE_GNU_INFO=true, USE_GNU_INFO=false)
73 AC_SUBST(USE_GNU_INFO) 73 AC_SUBST(USE_GNU_INFO)
74
75 ### Allow the user disable support for recursive directory searching
76 ### using Karl Berry's pathsearch library.
77
78 USE_KPATHSERACH=true
79 AC_ARG_ENABLE(pathsearch,
80 [ --enable-pathsearch use kpathsearch library (default is yes)],
81 USE_KPATHSEARCH=true, USE_KPATHSEARCH=false)
82 AC_SUBST(USE_GNU_KPATHSEARCH)
83 74
84 ### Allow the user disable support for command line editing using GNU 75 ### Allow the user disable support for command line editing using GNU
85 ### readline. 76 ### readline.
86 77
87 USE_READLINE=true 78 USE_READLINE=true