Skip to content

Commit

Permalink
Enable CLX for LispWorks 8.x and later (confirmed by McCLIM) (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
binghe authored Dec 29, 2023
1 parent 6d54c1c commit 594ad45
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dep-lispworks.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@

(in-package :xlib)

#-(or lispworks6 lispworks7)
;;; NOTE: This was: #-(or lispworks6 lispworks7), i.e. for LW 6.x and 7.x only.
;;; Now LW 8.x is confirmed working (by running McCLIM), thus we should
;;; enable LW 8.x and all future versions by default, and only very old
;;; LW versions (4.x and 5.x) are disabled here. -- binghe, 2023/12/29
#+(or lispworks4 lispworks5)
(error "Sorry, your ~S lisp version ~S is not currently supported. ~
Patches are welcome."
(lisp-implementation-type) (lisp-implementation-version))
Expand Down

0 comments on commit 594ad45

Please sign in to comment.