"Error: definining system package"
While trying to load clsql-postgresql (i.e. the FFI version), the error "definining system package POSTGRESQL" is raised. This error is raised even in the following test case: CL-USER 24 > (find-package "POSTGRESQL") NIL CL-USER 25 > (defpackage "POSTGRESQL" (:use "CL")) Error: Defining system package POSTGRESQL. 1 (continue) Define it anyway. 2 (abort) Return to level 0. 3 Return to top loop level 0. Type :b for backtrace, :c <option number> to proceed, or :? for other options CL-USER 26 : 1 > (defpackage "pSTGRESQL" (:use "CL")) #<The pSTGRESQL package, 0/16 internal, 0/16 external> Here I can simply pick the first restart, but ASDF aborts when it hits this error. I do not have ODBC loaded, but somehow the package "POSTGRESQL" is specially marked. I can't find any information about "system packages" in the LispWorks documentation. Any ideas? I'm fine with the postgresql-socket backend for now, but I'd like to get this to work. I am running LispWorks 5.0. -- Bill Atkins