From 471e64d61eebd501933423285e84917f85cb5ed1 Mon Sep 17 00:00:00 2001 From: Kevin Ollivier Date: Mon, 6 Feb 2006 03:03:24 +0000 Subject: [PATCH] wx-config now provides all the needed flags, so lflags just adds duplicates. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37346 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wxPython/setup.py b/wxPython/setup.py index d672a44196..cdaa055bfc 100755 --- a/wxPython/setup.py +++ b/wxPython/setup.py @@ -480,8 +480,9 @@ if BUILD_GLCANVAS: gl_libs = [] if os.name == 'posix': gl_config = os.popen(WX_CONFIG + ' --libs gl', 'r').read()[:-1] - gl_lflags = gl_config.split() + lflags + gl_lflags = gl_config.split() gl_libs = libs + else: gl_libs = libs + ['opengl32', 'glu32'] + makeLibName('gl') gl_lflags = lflags -- 2.47.2