<div dir="ltr"><div>Well, I think I found the thing that triggers the problem - even if I didn't really find the problem itself.  The :clim defsystem defines a dependency that reaches into one of its components - the Goatee/presentation-history file.  (Maybe the "huh?" comment in the asd file should've clued me in a little before now, eh?)  My guess (based on a later filesystem date on the file presentation-history as compared to the other file components of goatee-core) is that recompiling the file as a part of clim later than and as opposed to goatee-core made goatee appear to have changed, forcing recompiiling of parents...  Then things got weird.<br>

<br></div><div>When I put the #+NIL in the obvious place (see below), things work as expected.  (This with ASDF 3.0.2.4 - haven't check the older versions yet...)<br><br></div><div>Does anybody have any clue why this might have been this way?  It seems to be wrong in spirit (recompiling files of another component from outside any operations on that specific component), and clearly raised the eyebrows of at least one McCLIM maintainer...  In any event, thanks for the troubleshooting clues, guys, and sorry for any unintentional casting of aspersions...<br>

<br></div><div>-jm<br></div><div><br>(defsystem :clim<br>  :depends-on (:clim-core :goatee-core :clim-postscript :drei-mcclim)<br>  :components<br>  (#+NIL(:file "Goatee/presentation-history" ; XXX: this is loaded as part of the Goatee system. huh?<br>

          :pathname #.(make-pathname :directory '(:relative "Goatee") :name "presentation-history" :type "lisp"))<br>   (:file "input-editing-goatee")<br>   (:file "input-editing-drei")<br>

   (:file "text-editor-gadget")<br>   (:file "Extensions/tab-layout"<br>      :pathname #.(make-pathname :directory '(:relative "Extensions")<br>                     :name "tab-layout"<br>

                                     :type "lisp"))))<br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Sep 4, 2013 at 1:17 PM, Faré <span dir="ltr"><<a href="mailto:fahree@gmail.com" target="_blank">fahree@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">John, which version of McCLIM  are you using on which platform? Give<br>
us the URL, etc.<br>
<br>
I remember battling with mcclim.asd before I could release ASDF 3. It<br>
included a lot of cruft from the ASDF 1 days, and various bugs that I<br>
fixed together with rpgolman.<br>
<br>
It is also possible that McCLIM or one of its dependencies has<br>
dependency bugs that used to be hidden by ASDF bugs: unlike ASDF3,<br>
ASDF1 and after it ASDF2 don't properly propagate timestamps<br>
transitively through dependencies. If somehow McCLIM has some kind of<br>
circularity or bootstrapping whereby a file that is depended upon<br>
earlier in the build is touched or re-created later in the build, or<br>
even more simply, a declared input that doesn't exist or a declared<br>
output that is never created, that will cause ASDF3 to reload a lot of<br>
things where earlier versions wouldn't.<br>
<br>
Can you<br>
(1) check that you use the latest versions of McCLIM and its dependencies<br>
(2) find a minimal case where things go wrong, and give us a trace of<br>
perform-plan?<br>
<br>
—♯ƒ • François-René ÐVB Rideau •Reflection&Cybernethics• <a href="http://fare.tunes.org" target="_blank">http://fare.tunes.org</a><br>
Ever wonder why the SAME PEOPLE make up ALL the conspiracy theories?<br>
</blockquote></div><br></div>