diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2009-07-28 16:10:22 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-07-29 10:55:04 (GMT) |
commit | 21e5823e431bb8a64a048e61419b7bfc56f674d6 (patch) | |
tree | 4ffcf055a19010d11eb34ba7a0e61430e4cce45e /configure | |
parent | 45919e5085ff07348d1be8e1d37c0f6544fab7b1 (diff) | |
download | Qt-21e5823e431bb8a64a048e61419b7bfc56f674d6.zip Qt-21e5823e431bb8a64a048e61419b7bfc56f674d6.tar.gz Qt-21e5823e431bb8a64a048e61419b7bfc56f674d6.tar.bz2 |
Remove "no-stl" from the build key and add compatibility for old plugins.
STL support hasn't had binary compatibility effects for the entire
lifetime of Qt 4, so it should never have been there. It is a legacy
thing I am now correcting.
When inspecting a plugin, remove the "no-stl" from its loaded build
key. That indicates a pre-4.6 build, since now Qt no longer adds it to
its own build keys.
Note that you have to remove the 4.6 plugin cache from
$HOME/.config/Trolltech.conf or the registry for this change to work
(if you compile Qt with -no-stl). Otherwise, plugins that have already
been scanned will fail to load.
Reviewed-by: Bradley T. Hughes
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -6377,10 +6377,8 @@ esac # Different edition modules: # network canvas table xml opengl sql # -# Options: -# stl -# # Things that do not affect the Qt API/ABI: +# stl # system-jpeg no-jpeg jpeg # system-mng no-mng mng # system-png no-png png @@ -6401,7 +6399,7 @@ esac # X11 : x11sm xinerama xcursor xfixes xrandr xrender mitshm fontconfig xkb # Embedded: embedded freetype # -ALL_OPTIONS="stl" +ALL_OPTIONS= BUILD_CONFIG= BUILD_OPTIONS= @@ -6415,12 +6413,6 @@ for config_option in $QMAKE_CONFIG $QT_CONFIG; do BUILD_CONFIG="$config_option" ;; - stl) - # these config options affect the Qt API/ABI. they should influence - # the generation of the buildkey, so we don't skip them - SKIP="no" - ;; - *) # skip all other options since they don't affect the Qt API/ABI. ;; esac |