Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
1bd188b5
Commit
1bd188b5
authored
Sep 19, 2016
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update comments in footer.lisp
parent
ac543b76
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
footer.lisp
footer.lisp
+4
-1
No files found.
footer.lisp
View file @
1bd188b5
...
...
@@ -25,6 +25,7 @@
;;;; Hook ASDF into the implementation's REQUIRE and other entry points.
#+
(
or
abcl
clasp
clisp
clozure
cmucl
ecl
mkcl
sbcl
)
(
with-upgradability
()
;; Hook into CL:REQUIRE.
#-
clisp
(
pushnew
'module-provide-asdf
*module-provider-functions*
)
#+
clisp
(
if-let
(
x
(
and
#+
clisp
(
find-symbol*
'
#:*module-provider-functions*
:custom
nil
)))
(
eval
`
(
pushnew
'module-provide-asdf
,
x
)))
...
...
@@ -61,15 +62,17 @@
;;;; Done!
(
with-upgradability
()
#+
allegro
#+
allegro
;; restore *w-o-n-r-c* setting as saved in uiop/common-lisp
(
when
(
boundp
'excl:*warn-on-nested-reader-conditionals*
)
(
setf
excl:*warn-on-nested-reader-conditionals*
uiop/common-lisp::*acl-warn-save*
))
;; Advertise the features we provide.
(
dolist
(
f
'
(
:asdf
:asdf2
:asdf3
:asdf3.1
:asdf-package-system
))
(
pushnew
f
*features*
))
;; Provide both lowercase and uppercase, to satisfy more people, especially LispWorks users.
(
provide
"asdf"
)
(
provide
"ASDF"
)
;; Finally, call a function that will cleanup in case this is an upgrade of an older ASDF.
(
cleanup-upgraded-asdf
))
(
when
*load-verbose*
...
...
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