summaryrefslogtreecommitdiff
path: root/Lisp/init.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'Lisp/init.lisp')
-rw-r--r--Lisp/init.lisp8
1 files changed, 7 insertions, 1 deletions
diff --git a/Lisp/init.lisp b/Lisp/init.lisp
index 72d616f..a56d2e2 100644
--- a/Lisp/init.lisp
+++ b/Lisp/init.lisp
@@ -9,4 +9,10 @@
(unless (boundp '+yes+)
(defconstant +yes+ (objcl-get-yes)))
(unless (boundp '+no+)
- (defconstant +no+ (objcl-get-no))))
+ (defconstant +no+ (objcl-get-no)))
+ (unless (boundp '+runtime-type+)
+ (defconstant +runtime-type+ (runtime-type)))
+ (pushnew (case +runtime-type+
+ ((:gnu) 'objcl-features:gnu-runtime)
+ ((:next) 'objcl-features:next-runtime))
+ *features*))