From 3433b46740c959e94b7d6b6db18e4fe3a4bda03e Mon Sep 17 00:00:00 2001 From: John Connors Date: Sun, 30 Mar 2008 21:50:40 +0100 Subject: [PATCH] Unix loading fix --- lib/glfw-lib.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/glfw-lib.lisp b/lib/glfw-lib.lisp index 71cae7d..50e98b8 100644 --- a/lib/glfw-lib.lisp +++ b/lib/glfw-lib.lisp @@ -9,7 +9,7 @@ (cffi:define-foreign-library libglfw (:darwin (:framework "GLFW")) - (:unix (:or "glfw" "libglfw" #P"/usr/local/lib/libglfw.so")) + (:unix (:or "glfw" "libglfw.so" #P"/usr/local/lib/libglfw.so")) (:windows (:or "glfw.dll" "libglfw.dll")) (t (:default "libglfw"))) -- 2.11.4.GIT