I am working on a cross-platform application, and am using the latest Qt libraries, version 4.7. The problem is, one of the users tried to run it on Ubuntu 10.04 Lucid Lynx, and it crashed with undefined symbol: _ZN9QListData11detach_growEPii. Ubuntu 10.04 has Qt4.6.3 and it seems to be the problem.
However, it seems Ubuntu 10.04 doesn't support 4.7- only Ubuntu 10.10 does, and the user does not want to upgrade his linux distribution as his is Long Term Support. What are my options in this case? The user could potentially download the 4.7 framework and compile that on his PC, but that would mean every ubuntu 10.04 user would have to do this. Alternatively, I could make extra builds using Qt 4.6, but I can't find these older libraries.
Any suggestions? Are there any compile flags that would make it compatible with 4.6? Could this be a bug?
Thanks!
EDIT: I ended up sending him my Qt .so files, and it worked. However, everyone's answer here was correct and appropriate- I wish I could accept them all.