
Sat Jan 31 12:37:06 MST 2004

port form octane

changes to includes:
	lsoda.c
		replaced malloc.h by string.h


changes to makefile:
std macosx cflags:
CFLAGS=  -Wall -ggdb -O

changes to makefile:
replaced libq.so by libq.a:
example: $(SAMPL) libq.a
	cc $(LFLAGS) -o example $(SAMPL) $(FILES) $(LIB) -lq -lm   #-fswitch

libq.a: $(FILES) makefile
	ar cr libq.a $(FILES)
	ranlib libq.a


compiled 
	warnings on implicit decl, unused/unit vars, etc


example = test -- worked


----------------------------------------------------------------------
----------------------------------------------------------------------

readme file from distribution, for lsoda dir = REACT = REACT_DIR
----------------------------------------------------------------------

In this directory you will the routines comprising the integrater
lsoda.

Compile and place in a library called libq.a On a BSD 4.3 unix
system (or similar) 
	make libq.a
Other make options will make and run an example program (see the
makefile). MOVE the library (libq.a) to ~/libs/ (see the makefiles)
BY HAND.

     size   filename	comment....
      2044  daxpy.c	used by lsoda.c
      1876  ddot.c	used by lsoda.c
      2591  dgefa.c	used by lsoda.c
      2100  dgesl.c	used by lsoda.c
      1134  dscal.c	used by lsoda.c
      1164  example.c	a sample use of lsoda.c
      1213  idamax.c	used by lsoda.c
     61090  lsoda.c	the integrater
     49879  lsoda.doc	docs for lsoda.f
       379  makefile	make example or make libq.a
      1024  reaction/	chemical reaction kinetics
       315  readme	this file
       597  tom.add	address of translator of lsoda.f to C.
