Linked by Stefan Michalowski, M. Sc. on Thu 19th Aug 2004 08:27 UTC
Permalink for comment
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
News
Linked by Thom Holwerda on 05/22/13 22:23 UTC
Linked by Thom Holwerda on 05/22/13 13:38 UTC
Linked by Thom Holwerda on 05/22/13 13:30 UTC, submitted by JRepin
Linked by Thom Holwerda on 05/21/13 22:06 UTC
Linked by Thom Holwerda on 05/21/13 21:45 UTC
Linked by Thom Holwerda on 05/21/13 15:53 UTC
Linked by Thom Holwerda on 05/20/13 22:43 UTC
Linked by Thom Holwerda on 05/20/13 21:50 UTC
Linked by Thom Holwerda on 05/19/13 23:15 UTC
Linked by Thom Holwerda on 05/19/13 23:11 UTC, submitted by Drumhellar
More News »
Sponsored Links



It's sad that in Free/OSS binary compatiblity isn't considered important. When you regard source compatibility as the only thing that matters, okay. But being able to run binaries across different distro's is still very useful.
I compiled XFree86 from source a while ago, and in documentation it said that names of some libraries were changed to reflect that they were part of a newer version of XFree86. So, you have an application, and to use the newer library, you need to recompile it. The library is (as stated) fully compatible with the old one, provides the same functions, and interfaces with applications the same way. Yet, only for the sake of indicating it's part of a newer version of Xfree86, its name was changed. Frankly, this sort of thing is STUPID. Changing library names or programming interfaces should ONLY be done when really necessary.
The same goes for backwards compatibility. It's okay to break that, if that is the only way to implement new functions in an OS. But all effort should be made to avoid it when possible.
Just consider defined programming interfaces (API's). OS developers shouldn't worry about breaking apps that rely on functions not defined in API's. But they should be careful not to break apps that rely on defined API's. Keeping apps working when the OS underneath changes, is what API's are for, right?
Only source compatiblity matters? If so, you forget one thing: recompiling an application can be quick and simple, but may not be. Keeping old binaries around is always the easiest thing to do. Rebuilding a binary can be very difficult considering all build tools and dependencies that you may need. To recompile programs, you need a far more complex system, than you need for just running binaries.