comparison configure.in @ 3161:2837d1701fd9

[project @ 1998-03-02 06:27:23 by jwe]
author jwe
date Mon, 02 Mar 1998 06:27:23 +0000
parents 4696773a14b1
children 7c96e85c76db
comparison
equal deleted inserted replaced
3160:4696773a14b1 3161:2837d1701fd9
19 ### You should have received a copy of the GNU General Public License 19 ### You should have received a copy of the GNU General Public License
20 ### along with Octave; see the file COPYING. If not, write to the Free 20 ### along with Octave; see the file COPYING. If not, write to the Free
21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 ### 02111-1307, USA. 22 ### 02111-1307, USA.
23 23
24 AC_REVISION($Revision: 1.300 $) 24 AC_REVISION($Revision: 1.301 $)
25 AC_PREREQ(2.9) 25 AC_PREREQ(2.9)
26 AC_INIT(src/octave.cc) 26 AC_INIT(src/octave.cc)
27 AC_CONFIG_HEADER(config.h) 27 AC_CONFIG_HEADER(config.h)
28 28
29 AC_DEFINE(OCTAVE_SOURCE, 1) 29 AC_DEFINE(OCTAVE_SOURCE, 1)
102 [warn_f2c_and_g77="--with-f2c and --with-g77 both specified! Using g77..." 102 [warn_f2c_and_g77="--with-f2c and --with-g77 both specified! Using g77..."
103 AC_MSG_WARN($warn_f2c_and_g77) 103 AC_MSG_WARN($warn_f2c_and_g77)
104 use_f2c=false]) 104 use_f2c=false])
105 105
106 ### Allow the user disable support for GNU info. 106 ### Allow the user disable support for GNU info.
107
108 case "$canonical_host_type" in
109 *-*-cygwin32)
110 USE_GNU_INFO=false
111 ;;
112 *)
113 USE_GNU_INFO=true
114 ;;
115 esac
116 107
117 AC_ARG_ENABLE(info, 108 AC_ARG_ENABLE(info,
118 [ --enable-info use GNU info (default is yes)], 109 [ --enable-info use GNU info (default is yes)],
119 [if test "$enableval" = no; then USE_GNU_INFO=false; fi], []) 110 [if test "$enableval" = no; then USE_GNU_INFO=false; fi], [])
120 if $USE_GNU_INFO; then 111 if $USE_GNU_INFO; then