r3087: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 17 Oct 2002 22:13:20 +0000 (22:13 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 17 Oct 2002 22:13:20 +0000 (22:13 +0000)
db-mysql/mysql-loader.lisp
debian/changelog
uffi/clsql-uffi-loader.lisp

index 355f2b7d7f1622a75e08629d8e907b5769d92641..0fb81fd95bba01759604d4504e9067826a633c57 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmers:   Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: mysql-loader.lisp,v 1.2 2002/10/17 17:01:18 kevin Exp $
+;;;; $Id: mysql-loader.lisp,v 1.3 2002/10/17 22:13:20 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
       "/opt/mysql/lib/mysql/libmysqlclient.so")
      ((probe-file "/usr/local/lib/libmysqlclient.so")
       "/usr/local/lib/libmysqlclient.so")
+     ((probe-file "/usr/local/lib/mysql/libmysqlclient.so")
+      "/usr/local/lib/mysql/libmysqlclient.so")
      ((probe-file "/usr/lib/libmysqlclient.so")
       "/usr/lib/libmysqlclient.so")
+     ((probe-file "/usr/lib/mysql/libmysqlclient.so")
+      "/usr/lib/mysql/libmysqlclient.so")
      #+(or win32 mswindows) 
      ((probe-file "c:/mysql/lib/opt/libmysql.dll")
       "c:/mysql/lib/opt/libmysql.dll")
      (t
-      (warn "Can't find MySQL client library to load.")))
+      (error "Can't find MySQL client library to load.")))
   "Location where the MySQL client library is to be found.")
 
 (defvar *mysql-library-candidate-names*
     '("libmysqlclient" "libmysql"))
 
 (defvar *mysql-library-candidate-directories*
-    '("/opt/mysql/lib/mysql/" "/usr/local/lib/" "/usr/lib/" "/mysql/lib/opt/"))
+    '("/opt/mysql/lib/mysql/" "/usr/local/lib/" "/usr/lib/" "/usr/local/lib/mysql/" "/usr/lib/mysql/" "/mysql/lib/opt/"))
 
 (defvar *mysql-library-candidate-drive-letters* '("C" "D" "E"))
 
@@ -72,11 +76,16 @@ set to the right path before compiling or loading the system.")
         (uffi:find-foreign-library *mysql-library-candidate-names*
                                    *mysql-library-candidate-directories*
                                    :drive-letters
-                                   *mysql-library-candidate-drive-letters*)))
-    ;; zlib required to load mysql on CMUCL Solaris
-    (uffi:load-foreign-library 
-     (uffi:find-foreign-library '("libz" "zlib")
-                               '("/usr/lib/" "/usr/local/" "/lib/")))
+                                   *mysql-library-candidate-drive-letters*))
+       (zlib-path
+        (uffi:find-foreign-library '("libz" "zlib")
+                                   '("/usr/lib/" "/usr/local/lib/" "/lib/"))))
+    (unless (probe-file mysql-path)
+      (error "Can't find mysql client library to load"))
+    (unless (probe-file zlib-path)
+      (error "Can't find zlib client library to load"))
+    
+    (uffi:load-foreign-library zlib-path) 
     (if        (and
         (uffi:load-foreign-library mysql-path
                                    :module "mysql" 
@@ -87,7 +96,7 @@ set to the right path before compiling or loading the system.")
                                    :supporting-libraries 
                                    (append *mysql-supporting-libraries*)))
        (setq *mysql-library-loaded* t)
-      (warn "Unable to load MySQL client library ~A or CLSQL-MySQL library ~A"
+      (error "Unable to load MySQL client library ~A or CLSQL-MySQL library ~A"
            mysql-path *clsql-mysql-library-filename*))))
 
 
index 79cf320293c60ff71764edf7c647aa22a57785dc..70d029301fee06eb4810c4fdbcea67034b0acf6a 100644 (file)
@@ -1,3 +1,10 @@
+cl-sql (1.1.1-1) unstable; urgency=low
+
+  * Add more tests can existence of helper libraries. Will signal error rather than warn
+  if libraries not found.
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 17 Oct 2002 16:12:01 -0600
+
 cl-sql (1.1.0-1) unstable; urgency=low
 
   * Add SCL support.
index bea05d7b307423353ecd72e7728836a48f9072e3..ab6702ab3c0e9c7089a6e0dddb61f80888f8964c 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmers:   Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: clsql-uffi-loader.lisp,v 1.2 2002/10/17 17:01:19 kevin Exp $
+;;;; $Id: clsql-uffi-loader.lisp,v 1.3 2002/10/17 22:13:20 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -37,12 +37,15 @@ set to the right path before compiling or loading the system.")
   "T if foreign library was able to be loaded successfully")
 
 (defun load-uffi-foreign-library ()
+  (unless (probe-file *clsql-uffi-library-filename*)
+    (error "Unable to find clsql-uffi.so"))
+  
   (if (uffi:load-foreign-library *clsql-uffi-library-filename* 
                                 :module "clsql-uffi" 
                                 :supporting-libraries 
                                 *clsql-uffi-supporting-libraries*)
       (setq *uffi-library-loaded* t)
-    (warn "Unable to load helper library ~A" *clsql-uffi-library-filename*)))
+    (error "Unable to load helper library ~A" *clsql-uffi-library-filename*)))
 
 (load-uffi-foreign-library)