fixing compilation on 5.1.3

This commit is contained in:
Danny Yoo 2012-02-28 15:26:40 -05:00
parent 862fa431fe
commit f7917d378c
3 changed files with 4 additions and 3 deletions

View File

@ -6,7 +6,8 @@
(version-case (version-case
[(version<= "5.1.1.900" (version)) [(and (version<= "5.1.1.900" (version))
(version< (version) "5.2"))

View File

@ -14,7 +14,7 @@
(provide (except-out (all-from-out "parse-bytecode-5.1.1.rkt") (provide (except-out (all-from-out "parse-bytecode-5.1.1.rkt")
parse-bytecode)))] parse-bytecode)))]
[(and (version<= "5.1.1.900" (version)) [(and (version<= "5.1.1.900" (version))
(version< (version) "5.1.2")) (version< (version) "5.2"))
(begin (begin
(log-debug "Using 5.1.2 bytecode parser") (log-debug "Using 5.1.2 bytecode parser")
(require "parse-bytecode-5.1.2.rkt") (require "parse-bytecode-5.1.2.rkt")

View File

@ -7,4 +7,4 @@
(provide version) (provide version)
(: version String) (: version String)
(define version "1.192") (define version "1.193")