changeset 1044:a939e7206951

Added option to set BUILD_FORTRAN to "no".
author neelin <neelin>
date Mon, 21 Apr 1997 20:35:39 +0000
parents d97cbec427ce
children 057ef5a2c4f6
files configure.in
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in
+++ b/configure.in
@@ -121,7 +121,9 @@
 #------------------------------------------------------------------------
 AC_CHECK_PROGS(FC, f77)
 AC_MSG_CHECKING(whether to build fortran jackets)
-if test "$OS_TYPE" = "irix" && test "$FC" = "f77" || test "$BUILD_FORTRAN"
+if test "$BUILD_FORTRAN" = "yes" || 
+   ( test "$OS_TYPE" = "irix" && test "$FC" = "f77" &&
+     test "$BUILD_FORTRAN" != "no" )
 then
    FORTRAN_SUBDIR=fortran
    FORTRAN_OBJ='$(ROOT)/$(FORTRAN_SUBDIR)/minc_jackets.o'