Changes In Branch zmq-3.2.2 Through [432cf27357] Excluding Merge-Ins
This is equivalent to a diff from 977a37ad23 to 432cf27357
2013-01-22
| ||
10:30 | Cherrypicked changes to testzmq for running on Linux with no random command check-in: 64ef739ad9 user: mrwellan tags: trunk | |
09:31 | Install of zmq-3.2.2 works fine check-in: 80ac1ff687 user: mrwellan tags: zmq-3.2.2 | |
2013-01-17
| ||
21:09 | build zmq 3.2.2 check-in: 432cf27357 user: mrwellan tags: zmq-3.2.2 | |
2013-01-14
| ||
13:41 | Start of trial use of http instead of zmq check-in: ab15a4abf5 user: mrwellan tags: http-transport | |
2013-01-09
| ||
15:50 | Missing runconfigs section. check-in: 977a37ad23 user: mrwellan tags: trunk | |
2013-01-07
| ||
20:15 | Added missing mockupclientlib file check-in: 7b5c5970ba user: matt tags: trunk | |
Modified utils/installall.sh from [6bb115f66a] to [107041dc49].
︙ | ︙ | |||
77 78 79 80 81 82 83 | cd chicken-${CHICKEN_VERSION} make PLATFORM=linux PREFIX=$PREFIX make PLATFORM=linux PREFIX=$PREFIX install cd $BUILDHOME fi # Some eggs are quoted since they are reserved to Bash | | > | | | | | | | | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | cd chicken-${CHICKEN_VERSION} make PLATFORM=linux PREFIX=$PREFIX make PLATFORM=linux PREFIX=$PREFIX install cd $BUILDHOME fi # Some eggs are quoted since they are reserved to Bash # for f in matchable readline apropos base64 regex-literals format "regex-case" "test" coops trace csv dot-locking posix-utils posix-extras directory-utils hostinfo tcp rpc csv-xml fmt json md5; do chicken-install $PROX -keep-installed matchable readline apropos base64 regex-literals format "regex-case" "test" coops trace csv dot-locking posix-utils posix-extras directory-utils hostinfo tcp rpc csv-xml fmt json md5 awful http-client spiffy uri-common intarweb http-client spiffy-request-vars # if ! [[ -e $PREFIX/lib/chicken/6/$f.so ]];then # chicken-install $PROX $f # # chicken-install -deploy -prefix $DEPLOYTARG $PROX $f # else # echo Skipping install of egg $f as it is already installed # fi # done cd $BUILDHOME for a in `ls */*.meta|cut -f1 -d/` ; do echo $a (cd $a;chicken-install) done |
︙ | ︙ | |||
254 255 256 257 258 259 260 | cd $BUILDHOME # http://download.zeromq.org/zeromq-3.2.1-rc2.tar.gz # zpatchlev=-rc2 # http://download.zeromq.org/zeromq-2.2.0.tar.gz | | > | | 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | cd $BUILDHOME # http://download.zeromq.org/zeromq-3.2.1-rc2.tar.gz # zpatchlev=-rc2 # http://download.zeromq.org/zeromq-2.2.0.tar.gz # ZEROMQ=zeromq-2.2.0 ZEROMQ=zeromq-3.2.2 if ! [[ -e ${ZEROMQ}${zpatchlev}.tar.gz ]] ; then wget http://download.zeromq.org/${ZEROMQ}${zpatchlev}.tar.gz fi if [[ -e ${ZEROMQ}${zpatchlev}.tar.gz ]] ; then tar xfz ${ZEROMQ}.tar.gz cd ${ZEROMQ} |
︙ | ︙ |