comparison configure.in @ 1384:083787534e18

[project @ 1995-09-13 08:25:37 by jwe]
author jwe
date Wed, 13 Sep 1995 08:32:00 +0000
parents 44f5d41ff757
children 32ede420188c
comparison
equal deleted inserted replaced
1383:d0bdfca51b42 1384:083787534e18
18 ### 18 ###
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 02111-1307, USA. 21 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 22
23 AC_REVISION($Revision: 1.131 $) 23 AC_REVISION($Revision: 1.132 $)
24 AC_PREREQ(2.0) 24 AC_PREREQ(2.0)
25 AC_INIT(src/octave.cc) 25 AC_INIT(src/octave.cc)
26 AC_CONFIG_HEADER(config.h) 26 AC_CONFIG_HEADER(config.h)
27 27
28 AC_DEFINE(OCTAVE_SOURCE, 1) 28 AC_DEFINE(OCTAVE_SOURCE, 1)
638 esac 638 esac
639 639
640 XCFLAGS="$CFLAGS" 640 XCFLAGS="$CFLAGS"
641 CFLAGS="$CFLAGS $GCC_IEEE_FP_FLAG" 641 CFLAGS="$CFLAGS $GCC_IEEE_FP_FLAG"
642 642
643 ### Inf and NaN don't work with gcc on the Alpha yet. I am also told 643 ### I am told that Inf and NaN don't work on m68k HP sytems.
644 ### that they don't work on m68k HP sytems either.
645 644
646 case "$canonical_host_type" in 645 case "$canonical_host_type" in
647 alpha-dec-osf* | m68k-hp-hpux*) 646 m68k-hp-hpux*)
648 ;; 647 ;;
649 *) 648 *)
650 AC_CHECK_FUNCS(finite isnan isinf infinity quiet_nan) 649 AC_CHECK_FUNCS(finite isnan isinf infinity quiet_nan)
651 ;; 650 ;;
652 esac 651 esac