Overview
Comment: | Fixes to install.sh |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | update-installall.sh |
Files: | files | file ages | folders |
SHA1: |
e02110430157aab2c16e2dbe22080223 |
User & Date: | matt on 2012-10-08 23:07:12 |
Other Links: | branch diff | manifest | tags |
Context
2012-10-08
| ||
23:11 | Merged all changes to installall.sh Closed-Leaf check-in: e2e3701feb user: matt tags: update-installall.sh | |
23:07 | Fixes to install.sh check-in: e021104301 user: matt tags: update-installall.sh | |
22:44 | Merged b2448 into trunk, passes test4 check-in: 2d26c7fb2e user: matt tags: trunk, test4-clean | |
11:38 | Added logging to an sqlite3 db, updated installall.sh to latest chicken and iup releases, proper capture of stderr on launch process. check-in: 69482225b7 user: mrwellan tags: rpc-db-access, these-changes-moved-to-logging-to-db-branch | |
Changes
Modified utils/installall.sh from [f891fc2b45] to [3a5037bb6f].
︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | echo sudo apt-get install libreadline-dev echo sudo apt-get install libwebkitgtk-dev echo sudo apt-get install libmotif3 -OR- set KTYPE=26g4 echo KTYPE can be 26, 26g4, 32, or 32_64 echo KTYPE=$KTYPE echo You are using PREFIX=$PREFIX echo You are using proxy="$proxy" echo Hit ^C now to do that # A nice way to run this script: # # script -c 'PREFIX=/tmp/delme ./installall.sh ' installall.log # logpro installall.logpro installall.html < installall.log # firefox installall.html | > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | echo sudo apt-get install libreadline-dev echo sudo apt-get install libwebkitgtk-dev echo sudo apt-get install libmotif3 -OR- set KTYPE=26g4 echo KTYPE can be 26, 26g4, 32, or 32_64 echo KTYPE=$KTYPE echo You are using PREFIX=$PREFIX echo You are using proxy="$proxy" echo "Set additional_libpath to help find gtk or other libraries, don't forget a leading :" echo ADDITIONAL_LIBPATH=$ADDITIONAL_LIBPATH echo Hit ^C now to do that # A nice way to run this script: # # script -c 'PREFIX=/tmp/delme ./installall.sh ' installall.log # logpro installall.logpro installall.html < installall.log # firefox installall.html |
︙ | ︙ | |||
127 128 129 130 131 132 133 | cd ffcall ./configure --prefix=$PREFIX --enable-shared make make install cd $BUILDHOME | | | 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | cd ffcall ./configure --prefix=$PREFIX --enable-shared make make install cd $BUILDHOME export LIBPATH=$PREFIX/lib$ADDITIONAL_LIBPATH export LD_LIBRARY_PATH=$LIBPATH CSC_OPTIONS="-I$PREFIX/include -L$LIBPATH" chicken-install $PROX -D no-library-checks iup CSC_OPTIONS="-I$PREFIX/include -L$LIBPATH" chicken-install $PROX -D no-library-checks canvas-draw # export CD_REL=d704525ebe1c6d08 # if ! [[ -e Canvas_Draw-$CD_REL.zip ]]; then # wget http://www.kiatoa.com/matt/iup/Canvas_Draw-$CD_REL.zip |
︙ | ︙ |