diff --git a/gsll.asd b/gsll.asd index c892fdb8c56b348b869a0382428aed8de62ea81d..872375311e9205121a301573b4daf2de141c57fb 100644 --- a/gsll.asd +++ b/gsll.asd @@ -1,6 +1,6 @@ ;; Definition of GSLL system ;; Liam Healy -;; Time-stamp: <2011-10-29 19:21:04EDT gsll.asd> +;; Time-stamp: <2012-02-05 16:50:51EST gsll.asd> ;; ;; Copyright 2006, 2007, 2008, 2009, 2010, 2011 Liam M. Healy ;; Distributed under the terms of the GNU General Public License @@ -19,7 +19,7 @@ ;; along with this program. If not, see <http://www.gnu.org/licenses/>. (eval-when (:compile-toplevel :load-toplevel :execute) - (asdf:oos 'asdf:load-op :cffi-fsbv)) ; loads cff-grovel too, needed here + (asdf:oos 'asdf:load-op :cffi-libffi)) ; loads cff-grovel too, needed here (asdf:defsystem #:gsll :name "GSLL" diff --git a/init/init.lisp b/init/init.lisp index cd1cc9b068e048df50597d30bf893773ca4f8328..f74c20622e4608056ea9a98249b466c3f18e6c0a 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: <2012-01-13 12:03:27EST init.lisp> +;; Time-stamp: <2012-02-19 10:35:34EST init.lisp> ;; ;; Copyright 2006, 2007, 2008, 2009, 2010, 2011 Liam M. Healy ;; Distributed under the terms of the GNU General Public License @@ -67,8 +67,8 @@ (cffi:define-foreign-library libgslcblas (:darwin #+ccl #.(ccl:native-translated-namestring - (gsl-config-pathname "lib/libgslcblas.dylib")) - #-ccl #.(gsl-config-pathname "lib/libgslcblas.dylib")) + (gsl-config-pathname "libgslcblas.dylib")) + #-ccl #.(gsl-config-pathname "libgslcblas.dylib")) (:cygwin "cyggslcblas-0.dll") (:unix (:or "libgslcblas.so.0" "libgslcblas.so")) (t (:default "libgslcblas"))) @@ -83,8 +83,8 @@ (cffi:define-foreign-library libgsl (:darwin #+ccl #.(ccl:native-translated-namestring - (gsl-config-pathname "lib/libgsl.dylib")) - #-ccl #.(gsl-config-pathname "lib/libgsl.dylib")) + (gsl-config-pathname "libgsl.dylib")) + #-ccl #.(gsl-config-pathname "libgsl.dylib")) (:cygwin "cyggsl-0.dll") (:unix (:or "libgsl.so.0" "libgsl.so")) (t (:default "libgsl")))