Overview
Comment: | Correct params for setup-listener and fix make deps for ulex |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v2.0001 |
Files: | files | file ages | folders |
SHA1: |
48b4e099178b724dea8b31cd0dd7f5a2 |
User & Date: | matt on 2021-12-30 07:39:08 |
Other Links: | branch diff | manifest | tags |
Context
2021-12-31
| ||
19:24 | wip check-in: 4622e2fbb0 user: matt tags: v2.0001 | |
2021-12-30
| ||
07:39 | Correct params for setup-listener and fix make deps for ulex check-in: 48b4e09917 user: matt tags: v2.0001 | |
2021-12-29
| ||
19:23 | misc edits to get postgres out check-in: 8fecd12284 user: mrwellan tags: v2.0001 | |
Changes
Modified Makefile from [86b2762cd0] to [c6a8cae70d].
︙ | |||
97 98 99 100 101 102 103 | 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | - + + + + + | mofiles/launchmod.o : mofiles/bigmod.o mofiles/launchmod.o : mofiles/ezstepsmod.o mofiles/launchmod.o : mofiles/rmtmod.o mofiles/servermod.o mofiles/mtmod.o : mofiles/debugprint.o mofiles/portloggermod.o : mofiles/tasksmod.o mofiles/rmtmod.o : mofiles/apimod.o mofiles/rmtmod.o : mofiles/commonmod.o mofiles/portloggermod.o |
︙ |
Modified ulex/ulex.scm from [b42ceb312c] to [2906a4f6cb].
︙ | |||
24 25 26 27 28 29 30 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | - + | ;; Why sql-de-lite and not say, dbi? - performance mostly, then simplicity. ;; ;;====================================================================== (module ulex ( |
︙ | |||
141 142 143 144 145 146 147 | 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | - + | ;; run-listener does all the work of starting a listener in a thread ;; it then returns control ;; (define (run-listener handler-proc #!optional (port-suggestion #f)) (let* ((uconn (make-udat))) (udat-work-proc-set! uconn handler-proc) |
︙ |