From b788e7f4f18667de5669714b9a7e80d80a12cf67 Mon Sep 17 00:00:00 2001 From: Yuri Date: Tue, 12 Dec 2017 00:00:45 -0800 Subject: [PATCH] Fixed GL/GLEW libraries on BSD (they weren't linked). --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index e86b79fc3..8e84b312d 100644 --- a/setup.py +++ b/setup.py @@ -410,6 +410,7 @@ elif _platform == "darwin": +["examples/OpenGLWindow/MacOpenGLWindowObjC.m"] else: print("bsd!") + libraries = ['GL','GLEW','pthread'] os.environ['LDFLAGS'] = '-L/usr/X11R6/lib' CXX_FLAGS += '-D_BSD ' CXX_FLAGS += '-I/usr/X11R6/include '