Removed q5cost from to_ezfio.exe

This commit is contained in:
Anthony Scemama 2010-06-29 14:03:39 +02:00
parent ce393c8324
commit 55b17c0384
3 changed files with 14 additions and 10 deletions

Binary file not shown.

18
configure vendored
View File

@ -2501,7 +2501,7 @@ if [ -z $IRPF90 ] ; then
cd $EPLF_PATH/Downloads cd $EPLF_PATH/Downloads
mkdir $EPLF_PATH/Downloads/tmp mkdir $EPLF_PATH/Downloads/tmp
cd $EPLF_PATH/Downloads/tmp cd $EPLF_PATH/Downloads/tmp
wget -nc "http://sourceforge.net/projects/irpf90/files/latest" && WHERE=`ls -tr | tail -1` wget -nc "http://sourceforge.net/projects/irpf90/files/irpf90-1.1.49-noarch.exe.gz/download" && WHERE=`ls -tr | tail -1`
mv * $EPLF_PATH/Downloads mv * $EPLF_PATH/Downloads
cd $EPLF_PATH/Downloads cd $EPLF_PATH/Downloads
rm -rf tmp rm -rf tmp
@ -2512,21 +2512,23 @@ if [ -z $IRPF90 ] ; then
IRPF90=1 IRPF90=1
else else
{ { echo "$as_me:$LINENO: error: IRPF90 should be installed. You can download it at { { echo "$as_me:$LINENO: error: IRPF90 should be installed. You can download it at
http://sourceforge.net/projects/irpf90/files/latest" >&5 http://sourceforge.net/projects/irpf90/files/irpf90-1.1.49-noarch.exe.gz/download" >&5
echo "$as_me: error: IRPF90 should be installed. You can download it at echo "$as_me: error: IRPF90 should be installed. You can download it at
http://sourceforge.net/projects/irpf90/files/latest" >&2;} http://sourceforge.net/projects/irpf90/files/irpf90-1.1.49-noarch.exe.gz/download" >&2;}
{ (exit 1); exit 1; }; } { (exit 1); exit 1; }; }
fi fi
else else
{ { echo "$as_me:$LINENO: error: Please download IRPF90 at { { echo "$as_me:$LINENO: error: Please download IRPF90 at
http://sourceforge.net/projects/irpf90/files/latest" >&5 http://sourceforge.net/projects/irpf90/files/irpf90-1.1.49-noarch.exe.gz/download" >&5
echo "$as_me: error: Please download IRPF90 at echo "$as_me: error: Please download IRPF90 at
http://sourceforge.net/projects/irpf90/files/latest" >&2;} http://sourceforge.net/projects/irpf90/files/irpf90-1.1.49-noarch.exe.gz/download" >&2;}
{ (exit 1); exit 1; }; } { (exit 1); exit 1; }; }
fi fi
} }
{ { echo "$as_me:$LINENO: error: Install IRPF90 and run this configure script again." >&5 gunzip irpf90-1.1.49-noarch.exe.gz
echo "$as_me: error: Install IRPF90 and run this configure script again." >&2;} mv Downloads/irpf90.exe Downloads/irpf90
{ { echo "$as_me:$LINENO: error: Move Downloads/irpf90 into your PATH (/usr/bin for example) and run this configure script again." >&5
echo "$as_me: error: Move Downloads/irpf90 into your PATH (/usr/bin for example) and run this configure script again." >&2;}
{ (exit 1); exit 1; }; } { (exit 1); exit 1; }; }
fi fi
@ -2866,7 +2868,7 @@ fi
# Provide some information about the compiler. # Provide some information about the compiler.
echo "$as_me:2869:" \ echo "$as_me:2871:" \
"checking for Fortran compiler version" >&5 "checking for Fortran compiler version" >&5
ac_compiler=`set X $ac_compile; echo $2` ac_compiler=`set X $ac_compile; echo $2`
{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5

View File

@ -108,8 +108,10 @@ fi
# IRPF90 compiler # IRPF90 compiler
AC_CHECK_PROGS([IRPF90],[irpf90],[]) AC_CHECK_PROGS([IRPF90],[irpf90],[])
if [[ -z $IRPF90 ]] ; then if [[ -z $IRPF90 ]] ; then
AC_DOWNLOAD([IRPF90],[IRPF90],[http://sourceforge.net/projects/irpf90/files/latest]) AC_DOWNLOAD([IRPF90],[IRPF90],[http://sourceforge.net/projects/irpf90/files/irpf90-1.1.49-noarch.exe.gz/download])
AC_MSG_ERROR([Install IRPF90 and run this configure script again.]) gunzip irpf90-1.1.49-noarch.exe.gz
mv Downloads/irpf90.exe Downloads/irpf90
AC_MSG_ERROR([Move Downloads/irpf90 into your PATH (/usr/bin for example) and run this configure script again.])
fi fi
###################################################### ######################################################