comparison configure.in @ 2558:c097977bca6f

[project @ 1996-12-02 02:56:01 by jwe]
author jwe
date Mon, 02 Dec 1996 02:56:43 +0000
parents b50cc31aa0cd
children 0c978e147a3a
comparison
equal deleted inserted replaced
2557:4423962a2cb5 2558:c097977bca6f
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.235 $) 24 AC_REVISION($Revision: 1.236 $)
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)
294 if test -n "$gcc_version"; then 294 if test -n "$gcc_version"; then
295 CC_VERSION="$gcc_version" 295 CC_VERSION="$gcc_version"
296 fi 296 fi
297 AC_SUBST(CC_VERSION) 297 AC_SUBST(CC_VERSION)
298 298
299 ### On Linux systems we need to compile with -mieee-fp to get full 299 ### On Intel systems with gcc, we need to compile with -mieee-fp to
300 ### support for IEEE floating point. 300 ### get full support for IEEE floating point.
301 ### 301 ###
302 ### On Alpha/OSF systems, wee need -mieee-with-inexact, but that also 302 ### On Alpha/OSF systems, wee need -mieee-with-inexact, but that also
303 ### requires gcc 2.8.x or later. 303 ### requires gcc 2.8.x or later.
304 304
305 case "$canonical_host_type" in 305 case "$canonical_host_type" in
306 changequote(,)dnl 306 changequote(,)dnl
307 i[3456789]86-*-linux*) 307 i[3456789]86-*-*)
308 changequote([,])dnl 308 changequote([,])dnl
309 GCC_IEEE_FP_FLAG="-mieee-fp" 309 GCC_IEEE_FP_FLAG="-mieee-fp"
310 AC_MSG_RESULT([defining GCC_IEEE_FP_FLAG to be $GCC_IEEE_FP_FLAG]) 310 AC_MSG_RESULT([defining GCC_IEEE_FP_FLAG to be $GCC_IEEE_FP_FLAG])
311 ;; 311 ;;
312 alpha-dec-osf*) 312 alpha-dec-osf*)