;;;;
(defparameter *asdf-version*
;; the 1+ hair is to ensure that we don't do an inadvertent find and replace
- (subseq "VERSION:1.603" (1+ (length "VERSION"))))
+ (subseq "VERSION:1.604" (1+ (length "VERSION"))))
(defun asdf-version ()
*asdf-version*)
(equalp (missing-requires c)
required-c))))
|#
- (and (typep c 'missing-dependency)
- (equalp (missing-requires c)
- required-c)))))))
+ (or (null c)
+ (and (typep c 'missing-dependency)
+ (equalp (missing-requires c)
+ required-c))))))))
(do-dep (op dep)
(cond ((eq op 'feature)
(or (member (car dep) *features*)
accidental data retention and improving the time spent in garbage
collection.
- - ECL now ships with ASDF version 1.603
+ - ECL now ships with ASDF version 1.604
- The variables C:*USER-CC-FLAGS* and C:*USER-LD-FLAGS* are lists of strings
which can be customized by the user to change the behavior of the C compiler