Changeset 27606 in project
- Timestamp:
- 10/09/12 06:22:36 (8 years ago)
- Location:
- release/4/smtp
- Files:
-
- 3 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
release/4/smtp/tags/4.0/smtp.meta
r27605 r27606 18 18 ; A list of eggs smtp depends on. 19 19 20 (needs matchable typeclass datatype (abnf 5.0) )20 (needs matchable datatype typeclass utf8 (abnf 6.0) ) 21 21 22 22 (test-depends test) -
release/4/smtp/tags/4.0/smtp.scm
r27605 r27606 49 49 50 50 (import scheme chicken data-structures ) 51 (require-extension srfi-1 srfi-13 srfi-14datatype matchable typeclass )51 (require-extension srfi-1 utf8 datatype matchable typeclass ) 52 52 (import-for-syntax matchable) 53 53 54 (require-library extras abnf abnf-consumers)54 (require-library extras utf8-srfi-13 utf8-srfi-14 abnf abnf-consumers) 55 55 (import (prefix abnf abnf:) 56 56 (prefix abnf-consumers abnf:) 57 57 (only abnf <CoreABNF> <Input> <Token> <CharLex> ) 58 (only extras sprintf fprintf )) 58 (only extras sprintf fprintf ) 59 (only utf8-srfi-13 string-concatenate) 60 (only utf8-srfi-14 61 char-set char-set-difference char-set-union 62 char-set:graphic char-set:printing) 63 ) 59 64 60 65 -
release/4/smtp/tags/4.0/smtp.setup
r27605 r27606 17 17 18 18 ;; Assoc list with properties for your extension: 19 '((version 3.3)19 '((version 4.0) 20 20 )) 21 21 -
release/4/smtp/trunk/smtp.meta
r27605 r27606 18 18 ; A list of eggs smtp depends on. 19 19 20 (needs matchable typeclass datatype (abnf 5.0) )20 (needs matchable datatype typeclass utf8 (abnf 6.0) ) 21 21 22 22 (test-depends test) -
release/4/smtp/trunk/smtp.scm
r27605 r27606 49 49 50 50 (import scheme chicken data-structures ) 51 (require-extension srfi-1 srfi-13 srfi-14datatype matchable typeclass )51 (require-extension srfi-1 utf8 datatype matchable typeclass ) 52 52 (import-for-syntax matchable) 53 53 54 (require-library extras abnf abnf-consumers)54 (require-library extras utf8-srfi-13 utf8-srfi-14 abnf abnf-consumers) 55 55 (import (prefix abnf abnf:) 56 56 (prefix abnf-consumers abnf:) 57 57 (only abnf <CoreABNF> <Input> <Token> <CharLex> ) 58 (only extras sprintf fprintf )) 58 (only extras sprintf fprintf ) 59 (only utf8-srfi-13 string-concatenate) 60 (only utf8-srfi-14 61 char-set char-set-difference char-set-union 62 char-set:graphic char-set:printing) 63 ) 59 64 60 65 -
release/4/smtp/trunk/smtp.setup
r27605 r27606 17 17 18 18 ;; Assoc list with properties for your extension: 19 '((version 3.3)19 '((version 4.0) 20 20 )) 21 21
Note: See TracChangeset
for help on using the changeset viewer.