David L Parkhurst 0046094905 removed minimal rebuild in solution.
added implicit none for all subroutine, functions, and interfaces.
removed unused variables (commented).
added explicit definitions for any variables missing declarations.
rewrote integers used as logical
ended do loops with a continue statement
fixed error with ch_basin_permil_ET in phreeq_mms.f90
Disabled some Fortran diagnostics
Fixed error in change of module for xdebug_start, xdebug_stop


git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@9474 1feff8c3-07ed-0310-ac33-dd36852eb9cd
2015-04-07 17:26:35 +00:00
2014-10-31 05:00:02 +00:00
2012-01-12 00:30:56 +00:00
2015-04-01 01:37:35 +00:00
2015-04-07 17:26:35 +00:00
2010-02-23 05:06:14 +00:00
2012-12-15 04:42:03 +00:00
2015-04-01 01:37:35 +00:00
2015-03-16 22:18:25 +00:00
2012-12-14 04:04:50 +00:00
2014-02-07 08:10:46 +00:00
2015-04-03 08:43:18 +00:00
2010-04-27 20:53:16 +00:00
2010-02-23 05:09:09 +00:00
2010-02-23 05:09:09 +00:00
2015-03-10 21:51:55 +00:00
2012-02-06 22:05:40 +00:00
2013-08-06 21:47:19 +00:00
2010-02-23 05:09:09 +00:00
2010-02-23 05:09:09 +00:00
2014-06-24 19:28:20 +00:00
2015-04-01 23:45:29 +00:00
2013-01-30 21:43:52 +00:00
2015-03-10 21:51:55 +00:00
2015-03-10 21:51:55 +00:00
2015-03-14 02:48:20 +00:00
2015-04-01 01:37:35 +00:00
2010-07-18 20:13:13 +00:00
2013-01-30 21:43:52 +00:00

Building Static Libraries
=========================
     ./configure
     make LDFLAGS=-all-static check
     
   This will attemp to link ALL libraries statically. To be successful all libraries must have .a files.
     

Building Static iphreeqc Library
================================
     ./configure
     make LDFLAGS=-static check
     
   This will link the iphreeqc library statically.  All required additional libraries may be linked to
shared libraries.


Building shared and static iphreeqc Library (linking tests statically)
======================================================================
     ./configure
     make
     make LDFLAGS=-static check       # static to iphreeqc
   or
     make LDFLAGS=-all-static check   # completely static (if possible)
     
   This configuration will create both static and shared (if supported) iphreeqc libraries. But 
test programs (created during make check) will be statically linked to iphreeqc library
Description
No description provided
Readme 40 MiB
Languages
C++ 81.6%
Makefile 9.2%
C 4.8%
Fortran 1.8%
R 1%
Other 1.3%