chiark / gitweb /
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 617b4b345dea217607dc2fb0122533f9d66b7648..75918f766e53d0c661082bca05bd8c772b55672b 100644 (file)
@@ -100,8 +100,9 @@ (defmethod perform ((operation load-op) (c c-source-file))
   t)
   
 
+;;; Shared libraries
 
-(defclass library (static-file
+(defclass library (component
   ((libdir :initarg :libdir)))
 
 
@@ -119,3 +120,17 @@ (defmethod component-pathname ((lib library))
 
 (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)