[Ecls-list] asdf, sockets.lisp and standalone execs
Dmitri Hrapof
yavannadil at yahoo.com
Sun May 21 06:18:04 UTC 2006
Hello!
I'm trying to use ECL's extension to ASDF in order to build my program
that uses SB-BSD-SOCKETS.
My ASD is as follows:
(defpackage :secondary-system (:use #:asdf #:cl))
(in-package :secondary-system)
(defsystem secondary
:name "Secondary"
:components
((:file "sockets")
(:file "secondary" :depends-on ("sockets"))))
I can successfully perform LOAD-OP on this system.
And I can successfully (COMPILE-FILE <file> :SYSTEM-P T)
and then build the program.
However, when I try to perform BUILD-OP, it compains:
The variable +AF-INET+ is unbound.
Broken at EVAL.
Am I doing something wrong?
Thank you,
Dmitri
More information about the ecl-devel
mailing list