diff options
author | Thomas Zander <t.zander@nokia.com> | 2010-02-08 13:36:01 (GMT) |
---|---|---|
committer | Thomas Zander <t.zander@nokia.com> | 2010-02-08 13:36:01 (GMT) |
commit | 31cd89e8139f178e57ebb9a1b81b289b5df5fc69 (patch) | |
tree | e0143bb3db59d61e08409ef2b69ac9866d4cb840 /configure | |
parent | b026f288a3ef5ef4ee1ed771fa464268dbbacd78 (diff) | |
download | Qt-31cd89e8139f178e57ebb9a1b81b289b5df5fc69.zip Qt-31cd89e8139f178e57ebb9a1b81b289b5df5fc69.tar.gz Qt-31cd89e8139f178e57ebb9a1b81b289b5df5fc69.tar.bz2 |
Disable sqlite plugin compilation on symbian by default
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -4843,6 +4843,14 @@ for _SQLDR in $CFG_SQL_AVAILABLE; do fi ;; sqlite) + if [ "$CFG_SQL_sqlite" = "auto" ]; then # the default + case "$XPLATFORM" in + symbian*) + # sqlite on symbian is typically not build in Qt but deployed as a pre-existing sis file. + CFG_SQL_sqlite=no + ;; + esac + fi if [ "$CFG_SQL_sqlite" != "no" ]; then SQLITE_AUTODETECT_FAILED="no" if [ "$CFG_SQLITE" = "system" ]; then |