Use "--libs gl"

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28732 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-08-09 23:10:26 +00:00
parent 04b6e2f0c1
commit cb9a93a2f9

View File

@ -368,7 +368,7 @@ if BUILD_GLCANVAS:
gl_libs = []
if os.name == 'posix':
gl_config = os.popen(WX_CONFIG + ' --gl-libs', 'r').read()[:-1]
gl_config = os.popen(WX_CONFIG + ' --libs gl', 'r').read()[:-1]
gl_lflags = gl_config.split() + lflags
gl_libs = libs
else: