X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql.asd;h=0e1a302907af0770c3c8d6edc4153168bee99f6f;hp=0d564b67fdf89de8ab01cad74831a7948531d084;hb=bf641c516d77330e150d0f1b07fd02dceaae3ef4;hpb=b0d8b82d162436bf2a7406b4cea489084c232a85 diff --git a/clsql.asd b/clsql.asd index 0d564b6..0e1a302 100644 --- a/clsql.asd +++ b/clsql.asd @@ -60,7 +60,7 @@ oriented interface." ((:file "initialize") (:file "database" :depends-on ("initialize")) (:file "recording" :depends-on ("database")) - (:file "pool")) + (:file "pool" :depends-on ("database"))) :depends-on (base)) (:module syntax :pathname "" @@ -99,11 +99,12 @@ oriented interface." (defmethod perform :after ((o load-op) (c (eql (find-system 'clsql)))) (let* ((init-var (uffi:getenv "CLSQLINIT")) (init-file (or (when init-var (probe-file init-var)) - (merge-pathnames - (make-pathname :name ".clsql-init" :type "lisp") - (user-homedir-pathname)) + (probe-file + (concatenate 'string + (namestring (user-homedir-pathname)) + ".clsql-init.lisp")) (probe-file "/etc/clsql-init.lisp") - #+(or mswin windows win32) + #+(or mswin windows win32 win64 mswindows) (probe-file "c:\\etc\\clsql-init.lisp")))) (when init-file (load init-file))))