Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
d1f7aa37
Commit
d1f7aa37
authored
Aug 06, 2001
by
Daniel Barlow
Browse files
add minimal (and probably also insufficient) set of :in-order-to args
to see if the dependency chasing actually works
parent
3708d88d
Changes
1
Hide whitespace changes
Inline
Side-by-side
systems/db-sockets.system
View file @
d1f7aa37
...
...
@@ -90,7 +90,8 @@
(defsystem db-sockets
:source-pathname #p"cl-library:db-sockets;"
:components ((:file "defpackage"); :depends-on ("rt"))
:components ((:file "defpackage"
:in-order-to ((compile-system (load-system "def-to-lisp"))))
(:file "split" :depends-on ("defpackage"))
(:unix-dso "alien"
:components ((:file "undefs.c")
...
...
@@ -99,9 +100,15 @@
(:file "foreign-glue" :depends-on ("defpackage" "malloc"))
(:constants-file "constants"
:pathname "constants.lisp"
:depends-on
("defpackage" "foreign-glue" "def-to-lisp"))
(:file "sockets" :depends-on ("constants" ))
:in-order-to
((compile-system
(load-system "def-to-lisp"
"defpackage"
"foreign-glue"))))
(:file "sockets"
:in-order-to ((compile-system
(load-system "malloc" "split"))))
(:file "sockopt" :depends-on ("sockets"))
(:file "inet" :depends-on ("sockets" "split" "constants" ))
(:file "unix" :depends-on ("sockets" "split" "constants" ))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment