summaryrefslogtreecommitdiff
path: root/lib/make/configure.in
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-12-17 14:21:11 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-12-17 14:21:11 +0000
commitd8642c6e4e7690cd7ad7f1150d1838b71addbef7 (patch)
tree94425075d90f868d0f922f5a2f1c2f7061ad5878 /lib/make/configure.in
parentff044a371afdba1371ccd6429aea5253198bea57 (diff)
Check for ifort as F77/F90 compiler.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@3475 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/configure.in')
-rw-r--r--lib/make/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/make/configure.in b/lib/make/configure.in
index 3fb273a5..78db70cb 100644
--- a/lib/make/configure.in
+++ b/lib/make/configure.in
@@ -86,11 +86,11 @@ if test -z "$PERL" ; then
fi
if test -z "$F90" ; then
- AC_CHECK_PROGS(F90, f90 pgf90 xlf90)
+ AC_CHECK_PROGS(F90, f90 pgf90 xlf90 ifort)
fi
if test -z "$F77" ; then
- AC_CHECK_PROGS(F77, f77 pgf77 g77 f90 pgf90 xlf90)
+ AC_CHECK_PROGS(F77, f77 pgf77 g77 f90 pgf90 xlf90 ifort)
fi
if test -z "$AR" ; then