Permit loading plugins built with future major Qt releases (4.x)
authorModestas Vainius <modax@debian.org>
Sun, 14 Jun 2015 16:38:43 +0000 (16:38 +0000)
committerRaspbian forward porter <root@raspbian.org>
Sun, 14 Jun 2015 16:38:43 +0000 (16:38 +0000)
commit2383f6db2efc5c98ba0d3619c59ff45cba7e2892
treed8838f43ea8364ad85f59cc9e2d23ab951c99860
parent2877672bec7abe34ff873104a92603499d66bd8c
Permit loading plugins built with future major Qt releases (4.x)

This check is too paranoid for us because it prevents from using symbol files
in full potential. Fine-grained package level dependencies should ensure that
the required version of the Qt Library is installed which might not necessarily
be the latest Qt 4.x the plugin was built against because the plugin actually
did not use any of new symbols in the Qt Library.

However, removal of this check might still increase likelihood of crashes when:

1) loading a new incompatible version of plugin into a running process still
using an old Qt Library. This might happen right after upgrade;

2) user tries to load incompatible non-packaged plugin;

but it's an acceptable compromise. Here we trade more bullet proof protection
from rare user faults or weird system misconfigurations for more flexibility,
installability and expand of forward binary compatibility beyond the same Qt
4.x whenever possible.

Gbp-Pq: Name 23_permit_plugins_built_with_future_qt.diff
src/corelib/plugin/qlibrary.cpp