comparison configure.in @ 1137:5579a520c519

[project @ 1995-02-26 00:47:35 by jwe]
author jwe
date Sun, 26 Feb 1995 00:48:56 +0000
parents 3535aa4d38c6
children b12322b4c0e8
comparison
equal deleted inserted replaced
1136:f0c564a57b2c 1137:5579a520c519
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.92 $) 24 AC_REVISION($Revision: 1.93 $)
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)
61 lite_kernel=true, lite_kernel=false) 61 lite_kernel=true, lite_kernel=false)
62 if $lite_kernel; then 62 if $lite_kernel; then
63 AC_DEFINE(OCTAVE_LITE, 1) 63 AC_DEFINE(OCTAVE_LITE, 1)
64 fi 64 fi
65 AC_SUBST(lite_kernel) 65 AC_SUBST(lite_kernel)
66
67 ### Allow the user disable support for GNU info.
68
69 USE_GNU_INFO=true
70 AC_ARG_ENABLE(info,
71 [ --enable-info use GNU info (default is yes)],
72 USE_GNU_INFO=true, USE_GNU_INFO=false)
73 AC_SUBST(USE_GNU_INFO)
66 74
67 ### some defaults 75 ### some defaults
68 76
69 AC_PREFIX_DEFAULT(/usr/local) 77 AC_PREFIX_DEFAULT(/usr/local)
70 78