diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-05-28 11:03:24 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-05-28 11:03:24 (GMT) |
commit | f4d9a9458451ad4b3bd63bfafa34a57e3ba91c4a (patch) | |
tree | f4bb20f5d7aadf0d12777efc511e37463a6d8d70 | |
parent | 349dd6ef5cbba0c45d8089a3cf65f587c2662c4d (diff) | |
download | Qt-f4d9a9458451ad4b3bd63bfafa34a57e3ba91c4a.zip Qt-f4d9a9458451ad4b3bd63bfafa34a57e3ba91c4a.tar.gz Qt-f4d9a9458451ad4b3bd63bfafa34a57e3ba91c4a.tar.bz2 |
Enabled STL support by default in configure.exe for Symbian.
This change should be quite safe, since all Qt <-> STL type conversions
are implemented in inline methods. The only major difference is that new
operator is now used from STL instead of one from e32base.h
Of course, this change also requires that you have STLport installed to
your SDK. This should be the case if you have installed the latest
Open C/C++ plug-in from forum nokia.
-rwxr-xr-x | configure.exe | bin | 535040 -> 1183744 bytes | |||
-rw-r--r-- | tools/configure/configureapp.cpp | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/configure.exe b/configure.exe Binary files differindex 30383d8..b3e68c2 100755 --- a/configure.exe +++ b/configure.exe diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index a879e5d..40caff0 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -1405,7 +1405,7 @@ void Configure::applySpecSpecifics() dictionary[ "QT3SUPPORT" ] = "no"; dictionary[ "OPENGL" ] = "no"; dictionary[ "OPENSSL" ] = "no"; - dictionary[ "STL" ] = "no"; + dictionary[ "STL" ] = "yes"; dictionary[ "EXCEPTIONS" ] = "no"; dictionary[ "RTTI" ] = "no"; dictionary[ "ARCHITECTURE" ] = "symbian"; |