From 763b43d8610641b80b6b7e24fa4b20f97ae8c26e Mon Sep 17 00:00:00 2001
From: "Liam M. Healy" <lnp@healy.washington.dc.us>
Date: Fri, 13 Aug 2010 13:56:16 -0400
Subject: [PATCH] Put :unix at the end of load-foreign-library list

Put :unix at the end of load-foreign-library list so that more
specific unices like :darwin get seen first.
---
 init/init.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/init/init.lisp b/init/init.lisp
index 5c14ced2..773f56b2 100644
--- a/init/init.lisp
+++ b/init/init.lisp
@@ -1,6 +1,6 @@
 ;; Load GSL
 ;; Liam Healy Sat Mar  4 2006 - 18:53
-;; Time-stamp: <2010-07-18 22:53:17EDT init.lisp>
+;; Time-stamp: <2010-08-13 13:54:07EDT init.lisp>
 ;;
 ;; Copyright 2006, 2007, 2008, 2009, 2010 Liam M. Healy
 ;; Distributed under the terms of the GNU General Public License
@@ -41,9 +41,9 @@
       (read-line s))))
 
 (cffi:define-foreign-library libgslcblas
-  (:unix (:or "libgslcblas.so.0" "libgslcblas.so"))
   (:darwin "libgslcblas.dylib")
   (:cygwin "cyggslcblas-0.dll")
+  (:unix (:or "libgslcblas.so.0" "libgslcblas.so"))
   (t (:default "libgslcblas")))
    
 (cffi:use-foreign-library libgslcblas)
@@ -55,9 +55,9 @@
 (cffi:load-foreign-library "/lib/lapack/cygblas.dll")
 
 (cffi:define-foreign-library libgsl
-  (:unix (:or "libgsl.so.0" "libgsl.so"))
   (:darwin "libgsl.dylib")
   (:cygwin "cyggsl-0.dll")
+  (:unix (:or "libgsl.so.0" "libgsl.so"))
   (t (:default "libgsl")))
    
 (cffi:use-foreign-library libgsl)
-- 
GitLab