Fix build with non-SBCL host.
authorJoshua Elsasser <joshua@elsasser.org>
Wed, 23 Nov 2011 02:02:50 +0000 (18:02 -0800)
committerJoshua Elsasser <joshua@elsasser.org>
Wed, 23 Nov 2011 02:02:50 +0000 (18:02 -0800)
src/code/cas.lisp

index 17e4112..04f6aa2 100644 (file)
@@ -8,7 +8,9 @@
 ;;;; DEFCAS, and #'(CAS ...) functions -- making things mostly isomorphic with
 ;;;; SETF.
 
-(defglobal **cas-expanders** (make-hash-table :test #'eq :synchronized t))
+(defglobal **cas-expanders** (make-hash-table :test #'eq
+                                              #-sb-xc-host #-sb-xc-host
+                                              :synchronized t))
 
 (define-function-name-syntax cas (list)
   (destructuring-bind (cas symbol) list