Skip to content

Commit

Permalink
Corrected unix libGL designators.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralith committed Nov 1, 2011
1 parent 8d67df1 commit eee4dd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/x11/glx.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
(:bad-enum))

(define-foreign-library opengl
(t (:or (:default "libGL")
"libGL.so.1"
"libGL.so.2")))
(:darwin (:framework "OpenGL"))
(:windows "opengl32.dll" :convention :stdcall)
(:unix (:or "libGL.so.4" "libGL.so.3" "libGL.so.2" "libGL.so.1" "libGL.so")))
(use-foreign-library opengl)

(defctype fb-config :pointer)
Expand Down

0 comments on commit eee4dd8

Please sign in to comment.