From: Kevin M. Rosenberg Date: Thu, 15 Apr 2004 12:03:20 +0000 (+0000) Subject: r9017: openmcl fixes X-Git-Tag: v3.8.6~626 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=9caf87927916854758e642c625e6c8a8b274b999 r9017: openmcl fixes --- diff --git a/Makefile.common b/Makefile.common index c3aedeb..846a754 100644 --- a/Makefile.common +++ b/Makefile.common @@ -4,7 +4,7 @@ all: .PHONY: clean clean: @rm -rf .bin - @rm -f *.ufsl *.fsl *.fas *.x86f *.sparcf *.fasl + @rm -f *.ufsl *.fsl *.fas *.x86f *.sparcf *.fasl *.pfsl *.dfsl @rm -f *.fasla8 *.fasla16 *.faslm8 *.faslm16 *.faslmt @rm -f *~ *.bak *.orig *.err \#*\# .#* @rm -f *.so *.a diff --git a/base/utils.lisp b/base/utils.lisp index 55f2bc9..2456d36 100644 --- a/base/utils.lisp +++ b/base/utils.lisp @@ -76,7 +76,7 @@ #+allegro (mp:make-process-lock :name name) #+cmu (mp:make-lock name) #+lispworks (mp:make-lock :name name) - #+openmcl (ccl:make-lock :name name) + #+openmcl (ccl:make-lock name) #+sb-thread (sb-thread:make-mutex :name name) #+scl (thread:make-lock name) #-(or allegro cmu lispworks openmcl sb-thread scl) (declare (ignore name))