r2046: Debian build
[clsql.git] / interfaces / postgresql / postgresql-loader.cl
index 4db5fd426a63054a5e2b6f77075a191380d2fb3c..bf13ca0bcc80067ef85f4fb93768d6eb32c9432b 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: postgresql-loader.cl,v 1.1 2002/03/23 14:04:53 kevin Exp $
+;;;; $Id: postgresql-loader.cl,v 1.9 2002/05/14 16:51:06 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
 (in-package :postgresql)
 
-(defvar *postgresql-library-filename* 
-    (cond
-     ((probe-file "/opt/postgresql/lib/libpq.so")
-      "/opt/postgresql/lib/libpq.so")
-     ((probe-file "/usr/local/lib/libpq.so")
-      "/usr/local/lib/libpq.so")
-     ((probe-file "/usr/lib/libpq.so")
-      "/usr/lib/libpq.so")
-     #+(or win32 mswindows) 
-     ((probe-file "c:/postgresql/lib/libpq.dll")
-      "c:/postgresql/lib/libpq.dll")
-     (t
-      (warn "Can't find PostgresQL client library to load.")))
-  "Location where the PostgresSQL client library is to be found.")
 
 (defvar *postgresql-supporting-libraries* '("crypt" "c")
   "Used only by CMU. List of library flags needed to be passed to ld to
 load the PostgresSQL client library succesfully.  If this differs at your site,
 set to the right path before compiling or loading the system.")
 
-(defmethod database-type-load-foreign ((database-type (eql :postgresql)))
-  (uffi:load-foreign-library *postgresql-library-filename* 
-                            :module "postgresql"
-                            :supporting-libraries 
-                            *postgresql-supporting-libraries*))
+(defvar *postgresql-library-loaded* nil
+  "T if foreign library was able to be loaded successfully")
+
+(defmethod clsql-sys:database-type-library-loaded ((database-type
+                                                   (eql :postgresql)))
+  *postgresql-library-loaded*)
+                                     
+(defmethod clsql-sys:database-type-load-foreign ((database-type
+                                                 (eql :postgresql)))
+  (let ((libpath (uffi:find-foreign-library 
+                 "libpq"
+                 '("/opt/postgresql/lib/" "/usr/local/lib/" 
+                   "/usr/lib/" "/postgresql/lib/"
+                   "/usr/local/pgsql/lib/" "/usr/lib/pgsql/"
+                   "/opt/pgsql/lib/pgsql")
+                 :drive-letters '("C" "D" "E"))))
+    (if        (uffi:load-foreign-library libpath
+                                  :module "postgresql"
+                                  :supporting-libraries 
+                                  *postgresql-supporting-libraries*)
+       (setq *postgresql-library-loaded* t)
+      (warn "Can't load PostgreSQL client library ~A" libpath))))
+
+(clsql-sys:database-type-load-foreign :postgresql)
 
-(database-type-load-foreign :postgresql)