Line | |
---|
1 | ;;;; apropos.egg -*- Scheme -*- |
---|
2 | ;;;; Kon Lovett, Jul '18 |
---|
3 | |
---|
4 | ;BUG? (inline-file) w/o any define-inline causes error for non-existent apropos.inline |
---|
5 | |
---|
6 | ((synopsis "CHICKEN apropos") |
---|
7 | (version "3.2.3") |
---|
8 | (category misc) |
---|
9 | (author "[[kon lovett]]") |
---|
10 | (license "BSD") |
---|
11 | (dependencies |
---|
12 | (srfi-1 "0.1") |
---|
13 | (srfi-13 "0.1") |
---|
14 | (check-errors "3.1.0") |
---|
15 | (string-utils "2.1.0") |
---|
16 | (symbol-utils "2.0.1")) |
---|
17 | (test-dependencies test) |
---|
18 | (components |
---|
19 | (extension symbol-table-access |
---|
20 | #;(inline-file) |
---|
21 | (types-file) |
---|
22 | (csc-options "-O3" "-d1" "-local" "-no-procedure-checks") ) |
---|
23 | (extension symbol-access |
---|
24 | #;(inline-file) |
---|
25 | (types-file) |
---|
26 | (csc-options "-O3" "-d1" "-local" "-no-procedure-checks") ) |
---|
27 | (extension symbol-environment-access |
---|
28 | #;(inline-file) |
---|
29 | (types-file) |
---|
30 | (component-dependencies symbol-table-access) |
---|
31 | (csc-options "-O3" "-d1" "-local" "-no-procedure-checks") ) |
---|
32 | (extension apropos-api |
---|
33 | #;(inline-file) |
---|
34 | (types-file) |
---|
35 | (component-dependencies symbol-access symbol-environment-access) |
---|
36 | (csc-options "-O3" "-d1" "-local" "-no-procedure-checks") ) |
---|
37 | (extension apropos-csi |
---|
38 | #;(inline-file) |
---|
39 | (types-file) |
---|
40 | (component-dependencies apropos-api) |
---|
41 | (csc-options "-O3" "-d1" "-local" "-no-procedure-checks") ) |
---|
42 | (extension apropos |
---|
43 | #;(inline-file) |
---|
44 | (types-file) |
---|
45 | (component-dependencies apropos-csi apropos-api) |
---|
46 | (csc-options "-O3" "-d1" "-local") ) ) ) |
---|
Note: See
TracBrowser
for help on using the repository browser.