Changeset 12064 in project
- Timestamp:
- 10/01/08 04:31:15 (12 years ago)
- Location:
- release/3/graph-bfs/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
release/3/graph-bfs/trunk/graph-bfs-eggdoc.scm
r7358 r12064 9 9 10 10 (history 11 (version "1.8" "Now using matchable extension") 11 12 (version "1.7" "Unit tests updated to use testbase") 12 13 (version "1.6" "Build script updated for better cross-platform compatibility") … … 18 19 (version "1.0" "Initial release")) 19 20 20 (requires (url "iset.html" "iset")) 21 (requires (url "iset.html" "iset") 22 (url "syntax-case.html" "syntax-case") 23 (url "matchable.html" "matchable")) 21 24 22 25 (usage "(require-extension graph-bfs)") -
release/3/graph-bfs/trunk/graph-bfs.meta
r9305 r12064 16 16 ; A list of eggs graph-bfs depends on. 17 17 18 (needs testbase eggdoc iset )18 (needs testbase eggdoc iset syntax-case matchable) 19 19 20 20 (eggdoc "graph-bfs-eggdoc.scm") -
release/3/graph-bfs/trunk/graph-bfs.scm
r4884 r12064 26 26 (require-extension srfi-4) 27 27 (require-extension iset) 28 (require-extension syntax-case) 29 (require-extension matchable) 28 30 29 31 (define-extension graph-bfs) -
release/3/graph-bfs/trunk/graph-bfs.setup
r6968 r12064 21 21 22 22 ; Assoc list with properties for your extension: 23 `((version 1. 7)23 `((version 1.8) 24 24 (documentation "graph-bfs.html") 25 25 ,@(if has-exports? `((exports "graph-bfs.exports")) (list)) ))
Note: See TracChangeset
for help on using the changeset viewer.