Changeset 2521

Show
Ignore:
Timestamp:
02/17/08 17:38:38 (9 months ago)
Author:
ksprotte
Message:

#+cmu removed :use :ext from defpackages bknr.utils and bknr.indices
as this does not seem to be needed and causes a symbol conflict

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/trunk-reorg/bknr/datastore/src/indices/package.lisp

    r2180 r2521  
    44  (:use :cl 
    55        #+clisp :ext 
    6         #+cmu :ext 
    76        #+sbcl :sb-ext 
    87        :cl-user 
  • branches/trunk-reorg/bknr/datastore/src/utils/package.lisp

    r2458 r2521  
    66        :cl-interpol 
    77        :md5 
    8         #+cmu :extensions 
    98        #+sbcl :sb-ext 
    109        #+cmu :mp 
  • branches/trunk-reorg/bknr/datastore/src/utils/smbpasswd.lisp

    r1824 r2521  
    3030             (ext:run-program +smb-wrapper-program+ args :output stream :error :output))) 
    3131        (unwind-protect 
    32              (unless (zerop (process-exit-code process)) 
     32             (unless (zerop (ext:process-exit-code process)) 
    3333               (error (make-condition 'smb-password-error :message (get-output-stream-string stream)))) 
    34           (process-close process))) 
     34          (ext:process-close process))) 
    3535      #+openmcl 
    3636      (ccl::run-program +smb-wrapper-program+