Don't let autoconf mistake MPI compilers for Intel compilers;
filter out the MPI case to prevent Intel specific options from being applied.
--- /dev/null
+Detect MPI compilers in :file:`configure`.
esac
case "$CC" in
+*mpicc*)
+ CFLAGS_NODIST="$CFLAGS_NODIST"
+ ;;
*icc*)
# ICC needs -fp-model strict or floats behave badly
CFLAGS_NODIST="$CFLAGS_NODIST -fp-model strict"
esac
case "$CC" in
+*mpicc*)
+ CFLAGS_NODIST="$CFLAGS_NODIST"
+ ;;
*icc*)
# ICC needs -fp-model strict or floats behave badly
CFLAGS_NODIST="$CFLAGS_NODIST -fp-model strict"