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
201bc40d
Commit
201bc40d
authored
Nov 23, 2010
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.010.9: unbreak clisp: don't use find-symbol* at read-time, declare ignorable arguments.
parent
ac6165c9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
asdf.lisp
asdf.lisp
+3
-2
No files found.
asdf.lisp
View file @
201bc40d
...
...
@@ -77,7 +77,7 @@
;; "2.345" would be an official release
;; "2.345.6" would be a development version in the official upstream
;; "2.345.0.7" or "2.345.6.7" would be your local modification of one of the above.
(
asdf-version
"2.010.
8
"
)
(
asdf-version
"2.010.
9
"
)
(
existing-asdf
(
fboundp
'find-system
))
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
)))
...
...
@@ -666,7 +666,7 @@ with given pathname and if it exists return its truename."
(
string
(
probe-file*
(
parse-namestring
p
)))
(
pathname
(
unless
(
wild-pathname-p
p
)
#.
(
or
#+
(
or
allegro
clozure
cmu
ecl
sbcl
scl
)
'
(
probe-file
p
)
#+
clisp
(
aif
(
find-symbol
*
'
#:probe-pathname
:ext
)
`
(
ignore-errors
(
,
it
p
)))
#+
clisp
(
aif
(
find-symbol
(
string
'
#:probe-pathname
)
:ext
)
`
(
ignore-errors
(
,
it
p
)))
'
(
ignore-errors
(
truename
p
)))))))
(
defun*
truenamize
(
p
)
...
...
@@ -3134,6 +3134,7 @@ effectively disabling the output translation facility."
;;;; Compatibility mode for ASDF-Binary-Locations
(
defmethod
operate
:before
(
operation-class
system
&rest
args
&key
&allow-other-keys
)
(
declare
(
ignorable
operation-class
system
args
))
(
when
(
find-symbol*
'
#:output-files-for-system-and-operation
:asdf
)
(
error
"ASDF 2 is not compatible with ASDF-BINARY-LOCATIONS, which you are using.
ASDF 2 now achieves the same purpose with its builtin ASDF-OUTPUT-TRANSLATIONS,
...
...
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