Overview
Comment: | Reinstated -liboctinterp and -lncurses; needed by xleftdiv. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5208f666af1935567afdf3d53ebdaca0 |
User & Date: | geraint@users.sourceforge.net on 2002-05-02 11:03:46 |
Other Links: | branch diff | manifest | tags |
Context
2002-05-02
| ||
11:10:11 | s/loctave/loctinterp/ check-in: e44fb87f73 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
11:03:46 | Reinstated -liboctinterp and -lncurses; needed by xleftdiv. check-in: 5208f666af user: geraint@users.sourceforge.net tags: origin/master, trunk | |
09:43:39 | Generates parameter coefficients for ppp optimisation. check-in: a9d1dfd6f8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mttrc from [b1c9b36ff2] to [67335226a7].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.27 2002/04/28 18:41:26 geraint ## Fixed [ 549658 ] awk should be gawk. ## Replaced calls to awk with call to gawk. ## ## Revision 1.26 2002/04/26 16:16:33 geraint ## Removed unnecessary variables PLAT and GCCVERS. ## | > > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.28 2002/05/01 12:21:29 geraint ## No longer uses save_ascii_data_for_plotting function to write data ## - eliminates dependence on liboctinterp (and libncurses) for .cc. ## ## Revision 1.27 2002/04/28 18:41:26 geraint ## Fixed [ 549658 ] awk should be gawk. ## Replaced calls to awk with call to gawk. ## ## Revision 1.26 2002/04/26 16:16:33 geraint ## Removed unnecessary variables PLAT and GCCVERS. ## |
︙ | ︙ | |||
197 198 199 200 201 202 203 | # include paths IOCTAVE="-I${PREFIX}/include/octave/ -I${PREFIX}/include/octave/octave" # library paths OCTAVEVERS=`octave --version | gawk '{ print $4 }'` | | | | 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | # include paths IOCTAVE="-I${PREFIX}/include/octave/ -I${PREFIX}/include/octave/octave" # library paths OCTAVEVERS=`octave --version | gawk '{ print $4 }'` LOCTAVE="-L${PREFIX}/lib/octave-${OCTAVEVERS} -loctave -lcruft -loctave" LSYSTEM="-ldl -lm -lncurses -lkpathsea -lreadline -lblas -llapack -lfftw -lg2c" # compiler options DEBUG="-g" OPTIM="-O3" FLAGS="-fno-rtti -fno-exceptions -fno-implicit-templates" |
︙ | ︙ |