comparison configure.in @ 6161:4d90ee4061ef

[project @ 2006-11-14 15:12:04 by jwe]
author jwe
date Tue, 14 Nov 2006 15:12:04 +0000
parents 3a68a2dc6eb1
children 237a7f535bbc
comparison
equal deleted inserted replaced
6160:18344a472daf 6161:4d90ee4061ef
27 27
28 EXTERN_CFLAGS="$CFLAGS" 28 EXTERN_CFLAGS="$CFLAGS"
29 EXTERN_CXXFLAGS="$CXXFLAGS" 29 EXTERN_CXXFLAGS="$CXXFLAGS"
30 30
31 AC_INIT 31 AC_INIT
32 AC_REVISION($Revision: 1.545 $) 32 AC_REVISION($Revision: 1.546 $)
33 AC_PREREQ(2.57) 33 AC_PREREQ(2.57)
34 AC_CONFIG_SRCDIR([src/octave.cc]) 34 AC_CONFIG_SRCDIR([src/octave.cc])
35 AC_CONFIG_HEADER(config.h) 35 AC_CONFIG_HEADER(config.h)
36 36
37 OCTAVE_HOST_TYPE 37 OCTAVE_HOST_TYPE
2159 if test -n "$warn_gnuplot"; then 2159 if test -n "$warn_gnuplot"; then
2160 2160
2161 ## If you change this text, be sure to also change the corresponding 2161 ## If you change this text, be sure to also change the corresponding
2162 ## set of warnings above. 2162 ## set of warnings above.
2163 2163
2164 AC_MSG_WARN([])
2164 AC_MSG_WARN([I didn't find gnuplot. It isn't necessary to have gnuplot]) 2165 AC_MSG_WARN([I didn't find gnuplot. It isn't necessary to have gnuplot])
2165 AC_MSG_WARN([installed, but you won't be able to use any of Octave's]) 2166 AC_MSG_WARN([installed, but you won't be able to use any of Octave's])
2166 AC_MSG_WARN([plotting commands without it.]) 2167 AC_MSG_WARN([plotting commands without it.])
2167 AC_MSG_WARN([]) 2168 AC_MSG_WARN([])
2168 AC_MSG_WARN([If gnuplot is installed but it isn't in your path, you can]) 2169 AC_MSG_WARN([If gnuplot is installed but it isn't in your path, you can])
2169 AC_MSG_WARN([tell Octave where to find it by typing the command]) 2170 AC_MSG_WARN([tell Octave where to find it by typing the command])
2170 AC_MSG_WARN([]) 2171 AC_MSG_WARN([])
2171 AC_MSG_WARN([gnuplot_binary = "/full/path/to/gnuplot/binary"]) 2172 AC_MSG_WARN([gnuplot_binary = "/full/path/to/gnuplot/binary"])
2172 AC_MSG_WARN([]) 2173 AC_MSG_WARN([])
2173 AC_MSG_WARN([at the Octave prompt.]) 2174 AC_MSG_WARN([at the Octave prompt.])
2175 AC_MSG_WARN([])
2174 warn_msg_printed=true 2176 warn_msg_printed=true
2175 fi 2177 fi
2176 2178
2177 if $USE_64_BIT_IDX_T; then 2179 if $USE_64_BIT_IDX_T; then
2180 AC_MSG_WARN([])
2178 AC_MSG_WARN([You used the EXPERIMENTAL --enable-64 option.]) 2181 AC_MSG_WARN([You used the EXPERIMENTAL --enable-64 option.])
2179 AC_MSG_WARN([Are you sure that is what you want to do?]) 2182 AC_MSG_WARN([Are you sure that is what you want to do?])
2180 AC_MSG_WARN([]) 2183 AC_MSG_WARN([])
2181 AC_MSG_WARN([You must ensure that the Fortran compiler generates]) 2184 AC_MSG_WARN([You must ensure that the Fortran compiler generates])
2182 AC_MSG_WARN([code with 8 byte signed INTEGER values, and that your]) 2185 AC_MSG_WARN([code with 8 byte signed INTEGER values, and that your])
2183 AC_MSG_WARN([BLAS and LAPACK libraries are compiled to use 8 byte]) 2186 AC_MSG_WARN([BLAS and LAPACK libraries are compiled to use 8 byte])
2184 AC_MSG_WARN([signed integers for array indexing.]) 2187 AC_MSG_WARN([signed integers for array indexing.])
2185 warn_msg_printed=true 2188 AC_MSG_WARN([])
2189 warn_msg_printed=true
2190 fi
2191
2192 if $warn_message_printed; then
2193 AC_MSG_NOTICE([
2194
2195 NOTE: libraries may be skipped if a library is not found OR
2196 if the library on your system is missing required features.
2197 ])
2186 fi 2198 fi
2187 2199
2188 ### End of configure. 2200 ### End of configure.