Overview
Comment: | Added dep for commonmod on mtargs and tidied up a bit |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.70-defunct-try |
Files: | files | file ages | folders |
SHA1: |
15f1b3da75973494526542a2b15382a9 |
User & Date: | matt on 2019-12-27 23:00:17 |
Other Links: | branch diff | manifest | tags |
Context
2019-12-28
| ||
05:28 | Remove use of ulex. check-in: 2f1fbe80f1 user: matt tags: v1.70-defunct-try | |
2019-12-27
| ||
23:00 | Added dep for commonmod on mtargs and tidied up a bit check-in: 15f1b3da75 user: matt tags: v1.70-defunct-try | |
2019-12-18
| ||
19:52 | Merged stml2 addition to v1.70 check-in: c1b5a1535f user: matt tags: v1.70-defunct-try | |
Changes
Modified Makefile from [8d4c16e8e7] to [d774268f8a].
︙ | ︙ | |||
172 173 174 175 176 177 178 | mofiles/pkts.o : pkts/pkts.scm mofiles/mtargs.o : mtargs/mtargs.scm mofiles/mtconfigf.o : mtconfigf/mtconfigf.scm mofiles/ulex.o : ulex/ulex.scm # for the modularized stuff | | | 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | mofiles/pkts.o : pkts/pkts.scm mofiles/mtargs.o : mtargs/mtargs.scm mofiles/mtconfigf.o : mtconfigf/mtconfigf.scm mofiles/ulex.o : ulex/ulex.scm # for the modularized stuff mofiles/commonmod.o : megatest-fossil-hash.scm mofiles/stml2.o mofiles/mtargs.o mofiles/dbmod.o : mofiles/commonmod.o mofiles/keysmod.o \ mofiles/tasksmod.o mofiles/odsmod.o mofiles/commonmod.o : mofiles/processmod.o mofiles/rmtmod.o : mofiles/dbmod.o mofiles/commonmod.o \ mofiles/apimod.o mofiles/ulex.o mofiles/apimod.o : mofiles/dbmod.o # Removed from megamod.o dep: mofiles/ftail.o |
︙ | ︙ |
Modified commonmod.scm from [2a03ed0e79] to [818c0af718].
︙ | ︙ | |||
17 18 19 20 21 22 23 | ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;;====================================================================== (declare (unit commonmod)) ;; (declare (uses processmod)) (declare (uses stml2)) | > | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;;====================================================================== (declare (unit commonmod)) ;; (declare (uses processmod)) (declare (uses stml2)) (declare (uses mtargs)) (module commonmod * (import scheme chicken data-structures extras) (import (prefix sqlite3 sqlite3:) posix typed-records srfi-18 srfi-1 files format srfi-13 matchable |
︙ | ︙ |
Modified dashboard.scm from [3a5eb9e293] to [eaf80f460c].
︙ | ︙ | |||
86 87 88 89 90 91 92 | (declare (uses megamod.import)) (declare (uses dcommonmod.import)) (declare (uses mtargs.import)) (declare (uses ducttape-lib.import)) (declare (uses mtconfigf.import)) (configf:set-debug-printers debug:print debug:print-info debug:print-error *default-log-port*) | | | 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | (declare (uses megamod.import)) (declare (uses dcommonmod.import)) (declare (uses mtargs.import)) (declare (uses ducttape-lib.import)) (declare (uses mtconfigf.import)) (configf:set-debug-printers debug:print debug:print-info debug:print-error *default-log-port*) (configf:add-eval-string "(import megamod commonmod (prefix mtargs args:))") (define help (conc "Megatest Dashboard, documentation at http://www.kiatoa.com/fossils/megatest version " megatest-version " license GPL, Copyright (C) Matt Welland 2012-2017 |
︙ | ︙ |