From 3e3ce269def290359ff4eef7bf820623a894efb5 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Tue, 4 Jun 2013 09:10:37 -0700 Subject: [PATCH] opengl.gl: Fix opengl loading for Windows. --- basis/opengl/gl/gl.factor | 1 + 1 file changed, 1 insertion(+) diff --git a/basis/opengl/gl/gl.factor b/basis/opengl/gl/gl.factor index 32f7693424..4869928154 100644 --- a/basis/opengl/gl/gl.factor +++ b/basis/opengl/gl/gl.factor @@ -631,6 +631,7 @@ LIBRARY: gl << "gl" { + { [ os windows? ] [ drop ] } { [ os macosx? ] [ drop ] } { [ os unix? ] [ "libGL.so" cdecl add-library ] } } cond