-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fails to build against latest version #4
Comments
Which libtcod version do you mean when saying "latest"? |
@Zireael07 at time of writing latest would have been version 1.6.2 of libtcod. |
Same problem with libtcod 1.7.0 |
The problem is because this library was written against an older version of . libtcod and hasn't been kept up to date with the changes in libtcod's api. Therefore as of the time of my first reporting the issue this package is broken unless you roll back your version of libtcod to one that it was written against. Looking at it, you will need to build against version 1.5.1 of libtcod |
TCOD_sys_set_keyboard_repeat and TCOD_sys_disable_keyboard_repeat were removed in version 1.6.2 due to the removal of SDL1 support.
This therefore breaks your bindings when used against the latest version of libtcod.
There is no other API breaks that I can see, so removing those bindings may make it work with the latest version?
When attempting to go get the current version:
I forked and removed the undefined references and go get completed without error, but it looks as though the API has changed enough that a fair bit of work is needed to update the bindings. Oh well.
The text was updated successfully, but these errors were encountered: