From be09d1b46792dd618305da928b364c5b56c4ffe8 Mon Sep 17 00:00:00 2001 From: Russ Tyndall Date: Mon, 4 Aug 2014 10:58:38 -0400 Subject: [PATCH] Trying to fix acl build errors for cl-test-grid --- collectors.lisp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/collectors.lisp b/collectors.lisp index a56dc7d..7da8bb1 100644 --- a/collectors.lisp +++ b/collectors.lisp @@ -153,7 +153,11 @@ ;; ACL was throwing errors about this not being finalized (seems odd) re github #3 ;; https://github.com/AccelerationNet/collectors/issues/3 +;; Fix it by: https://www.mail-archive.com/closer-devel@common-lisp.net/msg00169.html +(closer-mop:ensure-finalized (find-class 'closer-mop:standard-object)) +(closer-mop:ensure-finalized (find-class 'closer-mop:standard-class)) (closer-mop:ensure-finalized (find-class 'closer-mop:funcallable-standard-object)) +(closer-mop:ensure-finalized (find-class 'closer-mop:funcallable-standard-class)) (defclass value-aggregator (closer-mop:funcallable-standard-object) ((initial-value :accessor initial-value :initarg :initial-value :initform nil)