Overview
Comment: | Build system switch to chicken 4.8.0.1 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | chicken-4.8.0.1 |
Files: | files | file ages | folders |
SHA1: |
1682004561177255cc664f4e7c551de8 |
User & Date: | matt on 2013-02-14 22:20:29 |
Other Links: | branch diff | manifest | tags |
Context
2013-02-14
| ||
22:20 | Build system switch to chicken 4.8.0.1 Closed-Leaf check-in: 1682004561 user: matt tags: chicken-4.8.0.1 | |
2013-02-04
| ||
21:19 | Decrease some noise. Added more instrumentation check-in: 1398d61951 user: matt tags: trunk | |
Changes
Modified tests/Makefile from [9996adc105] to [88283ab9d6].
1 2 | # run some tests | | | 1 2 3 4 5 6 7 8 9 10 | # run some tests BINPATH=$(PWD)/../bin MEGATEST=$(BINPATH)/megatest PATH := $(BINPATH):$(PATH) RUNNAME := $(shell date +w%V.%u.%H.%M) IPADDR := "-" # Set SERVER to "-server -" SERVER = DEBUG = 1 |
︙ | ︙ |
Modified utils/installall.sh from [2c31b5f624] to [42801dc8a2].
︙ | ︙ | |||
47 48 49 50 51 52 53 | if [[ $KTYPE == "" ]]; then echo 'Using KTYPE=26' export KTYPE=26 else echo Using KTYPE=$KTYPE fi | | | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | if [[ $KTYPE == "" ]]; then echo 'Using KTYPE=26' export KTYPE=26 else echo Using KTYPE=$KTYPE fi export CHICKEN_VERSION=4.8.0.1 if ! [[ -e chicken-${CHICKEN_VERSION}.tar.gz ]]; then wget http://code.call-cc.org/releases/${CHICKEN_VERSION}/chicken-${CHICKEN_VERSION}.tar.gz fi BUILDHOME=$PWD DEPLOYTARG=$BUILDHOME/deploy |
︙ | ︙ | |||
169 170 171 172 173 174 175 | #====================================================================== # Note uuid needed only for zmq 2.x series #====================================================================== # http://download.zeromq.org/zeromq-3.2.1-rc2.tar.gz # zpatchlev=-rc2 # http://download.zeromq.org/zeromq-2.2.0.tar.gz | < > | | 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | #====================================================================== # Note uuid needed only for zmq 2.x series #====================================================================== # 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 # wget http://www.kernel.org/pub/linux/utils/util-linux/v2.22/util-linux-2.22.tar.gz UTIL_LINUX=2.21 # UTIL_LINUX=2.20.1 if ! [[ -e util-linux-${UTIL_LINUX}.tar.gz ]] ; then # wget http://www.kiatoa.com/matt/util-linux-2.20.1.tar.gz wget http://www.kernel.org/pub/linux/utils/util-linux/v${UTIL_LINUX}/util-linux-${UTIL_LINUX}.tar.gz |
︙ | ︙ |