Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | proper static linkage setup |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
091ba753c150c8a9d3eb94070487db1e |
User & Date: | murphy 2011-10-02 20:40:31.052 |
Context
2011-10-03
| ||
01:20 | made static compilation optional check-in: f9257c7811 user: murphy tags: trunk | |
2011-10-02
| ||
20:40 | proper static linkage setup check-in: 091ba753c1 user: murphy tags: trunk | |
2011-09-25
| ||
01:51 | suspended resource and error handling tweaks check-in: e657ff967b user: murphy tags: trunk | |
Changes
Changes to webgate.setup.
1 2 3 4 5 6 7 8 9 | ;; -*- mode: Scheme; -*- (compile -s -O2 -d1 "webgate.scm" -luuid -j webgate -j webgate-utils -j webgate-core -j webgate-suspend -j webgate-cgi -j webgate-scgi) | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ;; -*- mode: Scheme; -*- (compile -s -O2 -d1 "webgate.scm" -luuid -j webgate -j webgate-utils -j webgate-core -j webgate-suspend -j webgate-cgi -j webgate-scgi) (compile -c -O2 -d1 "webgate.scm" -unit webgate) (compile -s -O2 -d0 "webgate.import.scm") (compile -s -O2 -d0 "webgate-utils.import.scm") (compile -s -O2 -d0 "webgate-core.import.scm") (compile -s -O2 -d0 "webgate-suspend.import.scm") (compile -s -O2 -d0 "webgate-cgi.import.scm") (compile -s -O2 -d0 "webgate-scgi.import.scm") |
︙ | ︙ |