Mercurial > hg > octave-nkf
diff configure.in @ 2336:9694ebb20b19
[project @ 1996-07-19 15:49:37 by jwe]
author | jwe |
---|---|
date | Fri, 19 Jul 1996 15:49:37 +0000 |
parents | 689bd09e92b2 |
children | cdf7ba6b3c9c |
line wrap: on
line diff
--- a/configure.in +++ b/configure.in @@ -20,7 +20,7 @@ ### along with Octave; see the file COPYING. If not, write to the Free ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -AC_REVISION($Revision: 1.209 $) +AC_REVISION($Revision: 1.210 $) AC_PREREQ(2.9) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h) @@ -478,7 +478,7 @@ ### f2c. if $use_g77; then - if test "$with_g77" = "yes"; then + if test "$with_g77" = yes; then F77=g77 else F77="$with_g77" @@ -486,7 +486,7 @@ AC_MSG_RESULT([defining F77 to be $F77]) elif $use_f2c; then F77= - if test "$with_f2c" = "yes"; then + if test "$with_f2c" = yes; then F2C=f2c else F2C="$with_f2c" @@ -522,7 +522,12 @@ fi case "$canonical_host_type" in alpha-dec-osf*) - FFLAGS="-fpe1 $FFLAGS" + case "$F77" in + g77*) + ;; + *) + FFLAGS="-fpe1 $FFLAGS" + ;; ;; esac if test -n "$FFLAGS"; then