Call Gd.ensure_types

This ensures that gd symbols get pulled in, instead of being stripped
due to the static linking of libgd.
This commit is contained in:
Jesse van den Kieboom 2014-01-04 21:16:25 +01:00
parent 323779c296
commit ab3081bf79

View file

@ -36,6 +36,9 @@ public class Main
Gitg.init();
// Make sure to pull in gd symbols since libgd gets linked statically
Gd.ensure_types();
Application app = new Application();
return app.run(args);
}