[climacs-devel] Re: explicit dependencies for climacs.asd

Andreas Fuchs asf at boinkor.net
Sun Jul 24 14:25:52 UTC 2005


Today, John Q. Splittist <splittist at yahoo.com> wrote:
> I had to add a dependency for "packages" on 
> "/Persistent/binseq-package", which I did by doing:
>
> (:file "binseq-package"
> :pathname #p"Persistent/binseq-package")
> (:file "packages" :depends-on ("binseq-package"))
>
> after the definition of the "Persistent" module. I'm sure this is
> not the right way, but it worked to get climacs loaded.

I suggest just adding a dependency from "packages" to the "Persistent"
module, instead. Code:

   (:module "Persistent"
            :components ((:file "binseq-package")
                         (:file "binseq" :depends-on ("binseq-package"))
                         (:file "obinseq" :depends-on ("binseq-package" "binseq"))
                         (:file "binseq2" :depends-on ("binseq-package" "obinseq" "binseq"))))

   (:file "packages" :depends-on ("Persistent"))


Thanks for spotting this. Hope this fix works (-:
-- 
Andreas Fuchs, <asf at boinkor.net>, asf at jabber.at, antifuchs



More information about the climacs-devel mailing list