Shared library component improved
authorespen <espen>
Wed, 9 Feb 2005 22:56:02 +0000 (22:56 +0000)
committerespen <espen>
Wed, 9 Feb 2005 22:56:02 +0000 (22:56 +0000)
tools/asdf-extensions.lisp

index 617b4b3..75918f7 100644 (file)
   t)
   
 
+;;; Shared libraries
 
-(defclass library (static-file
+(defclass library (component
   ((libdir :initarg :libdir)))
 
 
 
 (defmethod perform ((o load-op) (c library))
   (load-dso (component-pathname c)))
+
+(defmethod perform ((operation operation) (c library))
+  nil)
+
+(defmethod operation-done-p ((o load-op) (c library))
+  #+sbcl(find (sb-ext::unix-namestring (component-pathname c)) sb-alien::*shared-objects* :key #'sb-alien::shared-object-file :test #'equal)
+  #+cmu(rassoc (unix::unix-namestring (component-pathname c)) 
+       system::*global-table* 
+       :key #'(lambda (pathname)
+                (when pathname (unix::unix-namestring pathname)))
+       :test #'equal))
+
+(defmethod operation-done-p ((o operation) (c library))
+  t)