Overview
Comment: | Deleting common.o from process |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
a69eae02d7caf356e7e07f0ba4e9507d |
User & Date: | ritikaag on 2016-02-04 13:44:04 |
Other Links: | branch diff | manifest | tags |
Context
2016-02-10
| ||
05:35 | Remove zmq cruft check-in: 8e9c153d3c user: matt tags: v1.60 | |
2016-02-09
| ||
11:51 | Updated makefile for SLES11 check-in: 5eb6a386a0 user: jmoon18 tags: sles11-build | |
2016-02-04
| ||
13:44 | Deleting common.o from process check-in: a69eae02d7 user: ritikaag tags: v1.60 | |
2016-02-03
| ||
22:24 | Mostly updated Makefile.installall check-in: e617368726 user: matt tags: v1.60 | |
Changes
Modified Makefile from [a34d5bd588] to [64f55f9c5e].
︙ | ︙ | |||
213 214 215 216 217 218 219 | xterm : sd (export BASEPATH=/tmp/$(USER)/basepath ; export PATH="$(PWD)/datashare-testing:$(PATH)" ; xterm &) datashare-testing/spublish : spublish.scm $(OFILES) csc spublish.scm $(OFILES) -o datashare-testing/spublish | | | | 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 | xterm : sd (export BASEPATH=/tmp/$(USER)/basepath ; export PATH="$(PWD)/datashare-testing:$(PATH)" ; xterm &) datashare-testing/spublish : spublish.scm $(OFILES) csc spublish.scm $(OFILES) -o datashare-testing/spublish datashare-testing/sretrieve : sretrieve.scm megatest-version.o margs.o configf.o process.o csc sretrieve.scm megatest-version.o margs.o configf.o process.o -o datashare-testing/sretrieve sretrieve/sretrieve : datashare-testing/sretrieve csc -deploy -deployed sretrieve.scm megatest-version.o margs.o configf.o chicken-install -keep-installed $(PROXY) -deploy -prefix sretrieve defstruct srfi-18 format sql-de-lite \ srfi-1 posix regex regex-case srfi-69 # base64 dot-locking \ |
︙ | ︙ |
Modified process.scm from [2b748acd48] to [99891d384e].
︙ | ︙ | |||
11 12 13 14 15 16 17 | ;;====================================================================== ;; Process convience utils ;;====================================================================== (use regex) (declare (unit process)) | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | ;;====================================================================== ;; Process convience utils ;;====================================================================== (use regex) (declare (unit process)) ;;(declare (uses common)) (define (process:conservative-read port) (let loop ((res "")) (if (not (eof-object? (peek-char port))) (loop (conc res (read-char port))) res))) |
︙ | ︙ |