Skip to content

Commit

Permalink
remove GLU dependency, closes #3787
Browse files Browse the repository at this point in the history
  • Loading branch information
reduz committed Jul 18, 2016
1 parent f93e333 commit 587826f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/x11/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def configure(env):
print("PulseAudio development libraries not found, disabling driver")

env.Append(CPPFLAGS=['-DX11_ENABLED','-DUNIX_ENABLED','-DGLES2_ENABLED','-DGLES_OVER_GL'])
env.Append(LIBS=['GL', 'GLU', 'pthread', 'z'])
env.Append(LIBS=['GL', 'pthread', 'z'])
if (platform.system() == "Linux"):
env.Append(LIBS='dl')
#env.Append(CPPFLAGS=['-DMPC_FIXED_POINT'])
Expand Down

1 comment on commit 587826f

@akien-mga
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was about to commit this just as you did hehe. I confirm that it fixes the bug.

  • Before:
$ ldd -u -r bin/godot.x11.tools.64 
Unused direct dependencies:
        /lib64/libGLU.so.1
  • After:
$ ldd -u -r bin/godot.x11.tools.64

Please sign in to comment.