Commit graph

44 commits

Author SHA1 Message Date
Harry Moffat
bd4cdc2491 Added comments to the file. 2007-12-28 23:29:52 +00:00
Harry Moffat
7ffcb7525a Added WITH_VCSNONIDEAL preconfig line, setting to default off. 2007-12-19 22:22:38 +00:00
Harry Moffat
2deb29ff2c Changed WITH_ADSORBATE to be a setable variable. 2007-12-19 21:41:43 +00:00
Dave Goodwin
eb2f05874e *** empty log message *** 2007-12-18 03:04:49 +00:00
Dave Goodwin
a1c481ca5a *** empty log message *** 2007-12-17 08:18:01 +00:00
Dave Goodwin
c438d5846f added spectroscopy support 2007-12-15 17:15:46 +00:00
Dave Goodwin
8ee5b76fc9 added SemiconductorPhase 2007-11-26 22:45:19 +00:00
Dave Goodwin
0a5c4cdc04 *** empty log message *** 2007-11-06 15:00:10 +00:00
Harry Moffat
1f03f24b92 Changes to the treatment of the PIC environmental variable due to
solaris.
preconfig now sets it to null.
Unless the user has set it to something nonnull,
configure then resets it to -fPIC for all platforms except for Solaris,
where it set to null. Solaris doesn't require -fPIC.
2007-08-29 21:01:00 +00:00
Harry Moffat
f7cc4b6075 Changed the default SUNDIALS_HOME setting to blank.
This coincides with what is assumed in the configure.in file, and
avoids potential problems with spaces in $HOME that frequently
appear on cygwin installations.
2007-07-24 17:29:50 +00:00
Harry Moffat
80a0f4abd3 Changed the default INSTALL program from whatever autoconf found using
the macro AC_PROG_INSTALL to the program config/install-sh, which was
the backup option for AC_PROG_INSTALL anyway.

The driving reason for this was that the default /usr/bin/install
program on linux had problems when directories under $(CANTERA_ROOT)/build
weren't owned by installing user. Note, this can happen in a
collaborative environment when multiple people have group rw
on the source/build directory.

However, in general, this should help cross-platform variability
issues, since there is less variability now.

The user can override config/install-sh choice by setting the
environmental variable INSTALL_BIN in the preconfig script.
2007-07-13 17:23:55 +00:00
Dave Goodwin
95d150071d bug fixes 2007-05-11 20:58:19 +00:00
Dave Goodwin
b571729262 bug fixes 2007-05-11 19:29:35 +00:00
Dave Goodwin
9ec5f81be1 minor bug fixes 2007-05-10 20:22:36 +00:00
Dave Goodwin
39183733f0 *** empty log message *** 2007-05-10 03:38:38 +00:00
Dave Goodwin
ba5928083f added thread safety option 2007-05-10 03:28:30 +00:00
Dave Goodwin
fea8c985f5 reorganized source tree, changed include files, etc. 2007-05-04 15:18:40 +00:00
Dave Goodwin
b30a0ee8f1 *** empty log message *** 2007-04-25 00:08:11 +00:00
Harry Moffat
05e16e8e35 Added in the PIC autoconf variable, that already existed, into most
of the Makefiles in the code. This variable will now be used
to specify the position independent code compiler option within
Cantera. Note, this bug fix was needed for a 64 bit full python compile
on linux.
2007-04-13 22:39:15 +00:00
Dave Goodwin
28d2554423 *** empty log message *** 2007-01-31 17:33:11 +00:00
Dave Goodwin
e433bed576 *** empty log message *** 2007-01-11 11:37:23 +00:00
Dave Goodwin
71b71cd3f5 improved detection of MATLAB 2006-12-14 17:47:14 +00:00
Dave Goodwin
ce73f8bacd removed using namespace statements from Cantera header files, and fully qualified most members of std (string, vector< >, etc.) in header files. User programs may need to have "using namespace" statements added. 2006-11-27 21:43:30 +00:00
Dave Goodwin
20483b95b4 minor changes 2006-11-13 16:39:29 +00:00
Dave Goodwin
5e79dc9d89 minor cleanup 2006-11-13 04:23:33 +00:00
Dave Goodwin
3c22a320e3 minor changes to how dependencies are handled in Makefiles 2006-11-11 13:23:11 +00:00
Dave Goodwin
9de14b2b6a *** empty log message *** 2006-11-09 21:01:15 +00:00
Dave Goodwin
b88572545c install Makefiles for python demos 2006-11-08 23:58:50 +00:00
Dave Goodwin
5c13ab25c6 *** empty log message *** 2006-11-08 01:15:13 +00:00
Dave Goodwin
eee9f3023d *** empty log message *** 2006-11-07 23:35:59 +00:00
Dave Goodwin
1481f13b94 modified for cygwin 2006-10-30 19:30:59 +00:00
Dave Goodwin
85ef6f2c1d *** empty log message *** 2006-10-25 21:27:59 +00:00
Dave Goodwin
59c36def34 debug off is noe the default 2006-10-23 00:58:11 +00:00
Harry Moffat
d424e7a7a0 Fixed some small errors in the install process. 2006-08-15 01:12:44 +00:00
Dave Goodwin
ec04dbe060 *** empty log message *** 2006-07-11 18:12:06 +00:00
Dave Goodwin
ca65c77427 *** empty log message *** 2006-07-11 16:07:46 +00:00
Harry Moffat
aeffcf60d6 Turned on and documented the DEBUG_MODE capability.
It will now create a config.h entry, and a Makefile.in substitution
variable, CANTERA_DEBUG_MODE, which can be used in the test suite.
2006-07-07 18:07:53 +00:00
Harry Moffat
5eedbc5359 Changed NUMARRAY_HOME so that it doesn't have a default in preconfig.
NUMARRAY_INC_DIR is now constructed from NUMARRAY_HOME in the following
prioritized way depending upon the existance of directories:

    NUMARRAY_INC_DIR=$NUMARRAY_HOME/include/python2.4
    NUMARRAY_INC_DIR=$NUMARRAY_HOME/include/python2.3
    NUMARRAY_INC_DIR=$NUMARRAY_HOME/include/python

Additionally, NUMARRAY_INC_DIR can now be input directly. NUMARRAY_HOME
is only used to set NUMARRAY_INC_DIR.

Note, the new method now conforms to what the numarray installer
actually does.
2006-06-20 21:58:27 +00:00
Harry Moffat
59558a60e0 Added the GRAPHVIZDIR variable to the configure script.
This is used to locate the dot executable, when using doxygen.
2006-06-19 23:21:43 +00:00
Harry Moffat
665b868dc7 Added support for conditional use of ideal solid solutions. 2006-06-13 16:11:17 +00:00
Dave Goodwin
0db629dcd9 *** empty log message *** 2006-05-20 21:12:37 +00:00
Dave Goodwin
d2c8924533 misc 2006-05-17 17:43:53 +00:00
Dave Goodwin
cbb2eb6beb *** empty log message *** 2006-05-08 15:43:20 +00:00
Harry Moffat
3c7ea84b49 Solaris Port: the config/configure.in file has been pushed up one directory.
The previous configure file is now called preconfig.
2006-04-30 23:07:18 +00:00