From 594ad45770340061e651185cdc4c9bdb05f99ee1 Mon Sep 17 00:00:00 2001 From: Chun Tian Date: Sat, 30 Dec 2023 05:05:01 +1100 Subject: [PATCH] Enable CLX for LispWorks 8.x and later (confirmed by McCLIM) (#206) --- dep-lispworks.lisp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dep-lispworks.lisp b/dep-lispworks.lisp index 7204983..2d30517 100644 --- a/dep-lispworks.lisp +++ b/dep-lispworks.lisp @@ -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))