*** empty log message ***
This commit is contained in:
parent
39f9739db6
commit
8da6622c31
5 changed files with 3968 additions and 1587 deletions
|
|
@ -1 +1,2 @@
|
|||
Makefile
|
||||
*.mod
|
||||
|
|
|
|||
|
|
@ -44,10 +44,17 @@ namespace Cantera {
|
|||
public:
|
||||
Application() : linelen(0), stop_on_error(false),
|
||||
#ifdef WIN32
|
||||
tmp_dir(".") {}
|
||||
tmp_dir(".") {
|
||||
#else
|
||||
tmp_dir(".") {}
|
||||
tmp_dir("/tmp") {
|
||||
#endif
|
||||
char* tmpdir = getenv("TMP");
|
||||
if (tmpdir == 0)
|
||||
tmpdir = getenv("TEMP");
|
||||
if (tmpdir != 0)
|
||||
tmp_dir = string(tmpdir);
|
||||
}
|
||||
|
||||
virtual ~Application() {
|
||||
map<string, XML_Node*>::iterator pos;
|
||||
for (pos = xmlfiles.begin(); pos != xmlfiles.end(); ++pos) {
|
||||
|
|
|
|||
5533
config/configure
vendored
5533
config/configure
vendored
File diff suppressed because it is too large
Load diff
|
|
@ -366,7 +366,7 @@ build_with_f2c=0
|
|||
if test -n $BUILD_WITH_F2C ; then
|
||||
if test $BUILD_WITH_F2C = "y" -o $BUILD_WITH_F2C = "Y" ; then
|
||||
build_with_f2c=1
|
||||
elif test $BUILD_WITH_F2C = "y" -o $BUILD_WITH_F2C = "Y" ; then
|
||||
elif test $BUILD_WITH_F2C = "n" -o $BUILD_WITH_F2C = "N" ; then
|
||||
build_with_f2c=0
|
||||
elif test $BUILD_WITH_F2C = "default" ; then
|
||||
if test x$OS_IS_WIN = "x1" ; then
|
||||
|
|
@ -485,8 +485,8 @@ BUILD_F90=0
|
|||
if test "x$BUILD_F90_INTERFACE" = "xy"; then
|
||||
BUILD_F90=1
|
||||
AC_CHECK_PROG(foundF90, $F90, yes, no)
|
||||
if test x$foundF90 != "x1" ; then
|
||||
echo 'Did not find the fortran90 compiler, '$F90
|
||||
if test x$foundF90 = "xno" ; then
|
||||
echo 'Did not find the Fortran 90 compiler, '$F90
|
||||
echo " -> Turning off F90 interface even though it was requested"
|
||||
BUILD_F90=0
|
||||
fi
|
||||
|
|
|
|||
4
configure
vendored
4
configure
vendored
|
|
@ -106,7 +106,7 @@ PYTHON_SITE_PACKAGE_TOPDIR=${PYTHON_SITE_PACKAGE_TOPDIR:="/usr/local"}
|
|||
# Matlab script. If this is set to "y" but Matlab is not found, the
|
||||
# Matlab toolbox will not be built.
|
||||
|
||||
BUILD_MATLAB_TOOLBOX=${BUILD_MATLAB_TOOLBOX:="n"}
|
||||
BUILD_MATLAB_TOOLBOX=${BUILD_MATLAB_TOOLBOX:="y"}
|
||||
|
||||
|
||||
#----------- Fortran 77 -----------------------------------------------------
|
||||
|
|
@ -118,7 +118,7 @@ BUILD_MATLAB_TOOLBOX=${BUILD_MATLAB_TOOLBOX:="n"}
|
|||
# Note, if set to "y", Cantera does not need a fortran compiler, and
|
||||
# all fortran compiler parameters are irrelevant.
|
||||
|
||||
BUILD_WITH_F2C=${BUILD_WITH_F2C:="default"}
|
||||
BUILD_WITH_F2C=${BUILD_WITH_F2C:="y"}
|
||||
|
||||
#----------- Fortran 90/95 --------------------------------------------------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue