This reverts commit 8d1ff873d8.
Revert "Binding fix"
This reverts commit c606ec5139.
Revert "Add support for HL libraries"
This reverts commit 6b49f4d240.
Revert "Minor fixes"
This reverts commit dcacb9f04a.
Revert "Compile fixes"
This reverts commit 3b9e572f8b.
Revert "Sync with Haxe std library (remove some overrides)"
This reverts commit c05061c970.
Revert "Initial support for HL target in tools (for testing)"
This reverts commit 1dadbb725c.
Currently, this line only checks if the current Ubuntu version is 13.10. More versions of Ubuntu have been released since then.
The reason this line was included was because versions of Ubuntu at or after 13.10 no longer have the package ia32-libs-multiarch.
When attempting to run "haxelib run lime setup linux" on Ubuntu versions after 13.10, e.g. Ubuntu 14.04, Lime crashes since there is no ia32-libs-multiarch package available.
The issue with this line of code is that it only checks for Ubuntu 13.10, and not any versions after this.
Fortunately, Haxe supports testing strings via comparison operators.
By replacing the '==' operator with '>=,' this line now instead checks for versions of Ubuntu at or after 13.10 Saucy Salamander.
This works on Ubuntu 14.04.1, and should work on other versions too. Versions of Ubuntu Before 13.10 should still stay the same; they will still install the ia32-libs-multiarch package.