comparison configure.in @ 1145:185b16c1be3d

[project @ 1995-02-26 06:17:04 by jwe]
author jwe
date Sun, 26 Feb 1995 06:20:18 +0000
parents 322aa3f3aab0
children b78e479dbf16
comparison
equal deleted inserted replaced
1144:322aa3f3aab0 1145:185b16c1be3d
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.95 $) 24 AC_REVISION($Revision: 1.96 $)
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 LIBINFO=
75 if $USE_GNU_INFO; then
76 LIBINFO=../info/libinfo.a
77 else
78 AC_SUBST(LIBINFO)
74 79
75 ### Allow the user disable support for command line editing using GNU 80 ### Allow the user disable support for command line editing using GNU
76 ### readline. 81 ### readline.
77 82
78 USE_READLINE=true 83 USE_READLINE=true
79 AC_ARG_ENABLE(readline, 84 AC_ARG_ENABLE(readline,
80 [ --enable-readline use readline library (default is yes)], 85 [ --enable-readline use readline library (default is yes)],
81 USE_READLINE=true, USE_READLINE=false) 86 USE_READLINE=true, USE_READLINE=false)
82 AC_SUBST(USE_READLINE) 87 AC_SUBST(USE_READLINE)
88 LIBREADLINE=
89 if $USE_READLINE; then
90 LIBREADLINE=../readline/libreadline.a
91 else
92 AC_SUBST(LIBREADLINE)
83 93
84 ### some defaults 94 ### some defaults
85 95
86 AC_PREFIX_DEFAULT(/usr/local) 96 AC_PREFIX_DEFAULT(/usr/local)
87 97