Ignore:
Timestamp:
Aug 2, 2010, 5:05:06 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

vendor: Merged in qt-everywhere-opensource-src-4.6.3 from Nokia.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/vendor/nokia/qt/current/tools/configure/configureapp.cpp

    r649 r767  
    248248    dictionary[ "PHONON_BACKEND" ]  = "yes";
    249249    dictionary[ "MULTIMEDIA" ]      = "yes";
    250     dictionary[ "AUDIO_BACKEND" ]   = "yes";
     250    dictionary[ "AUDIO_BACKEND" ]   = "";
    251251    dictionary[ "DIRECTSHOW" ]      = "no";
    252252    dictionary[ "WEBKIT" ]          = "auto";
     
    318318    dictionary[ "DBUS" ]            = "auto";
    319319    dictionary[ "S60" ]             = "yes";
    320     dictionary[ "SYMBIAN_DEFFILES" ] = "yes";
    321320
    322321    dictionary[ "STYLE_WINDOWS" ]   = "yes";
     
    971970                break;
    972971            dictionary[ "QT_LIBINFIX" ] = configCmdLine.at(i);
     972
     973
     974
     975
    973976        } else if( configCmdLine.at(i) == "-D" ) {
    974977            ++i;
     
    14781481        dictionary[ "QT_GLIB" ]             = "no";
    14791482        dictionary[ "S60" ]                 = "yes";
     1483
    14801484        // iconv makes makes apps start and run ridiculously slowly in symbian emulator (HW not tested)
    14811485        // iconv_open seems to return -1 always, so something is probably missing from the platform.
     
    14851489        dictionary[ "QT_INSTALL_PREFIX" ]   = "";
    14861490        dictionary[ "QT_INSTALL_PLUGINS" ]  = "\\resource\\qt\\plugins";
     1491
    14871492        dictionary[ "ARM_FPU_TYPE" ]        = "softvfp";
    14881493        dictionary[ "SQL_SQLITE" ]          = "yes";
     
    20662071    } else if (part == "DECLARATIVE") {
    20672072        available = QFile::exists(sourcePath + "/src/declarative/qml/qmlcomponent.h");
     2073
     2074
     2075
     2076
     2077
     2078
     2079
     2080
     2081
     2082
     2083
     2084
     2085
     2086
     2087
     2088
     2089
     2090
     2091
     2092
     2093
     2094
     2095
     2096
     2097
     2098
     2099
     2100
     2101
     2102
     2103
     2104
     2105
     2106
     2107
     2108
     2109
     2110
     2111
     2112
     2113
     2114
     2115
     2116
     2117
     2118
    20682119    }
    20692120
     
    21542205    if (dictionary["DECLARATIVE"] == "auto")
    21552206        dictionary["DECLARATIVE"] = checkAvailability("DECLARATIVE") ? "yes" : "no";
     2207
     2208
    21562209
    21572210    // Qt/WinCE remote test application
     
    22662319    QString build32Key = buildKey + "Windows " + compiler + " %1 " + build_options.join(" ") + " " + build_defines.join(" ");
    22672320    QString build64Key = buildKey + "Windows x64 " + compiler + " %1 " + build_options.join(" ") + " " + build_defines.join(" ");
     2321
    22682322    build32Key = build32Key.simplified();
    22692323    build64Key = build64Key.simplified();
    2270     build32Key.prepend("#  define ");
    2271     build64Key.prepend("#  define ");
    2272 
    2273     QString buildkey = // Debug builds
    2274                        "#if (defined(_DEBUG) || defined(DEBUG))\n"
    2275                        "# if (defined(WIN64) || defined(_WIN64) || defined(__WIN64__))\n"
     2324    buildSymbianKey = buildSymbianKey.simplified();
     2325    build32Key.prepend("#   define ");
     2326    build64Key.prepend("#   define ");
     2327    buildSymbianKey.prepend("# define ");
     2328
     2329    QString buildkey = "#if defined(__SYMBIAN32__)\n"
     2330                       + buildSymbianKey + "\"\n"
     2331                       "#else\n"
     2332                       // Debug builds
     2333                       "# if (defined(_DEBUG) || defined(DEBUG))\n"
     2334                       "#  if (defined(WIN64) || defined(_WIN64) || defined(__WIN64__))\n"
    22762335                       + build64Key.arg("debug") + "\"\n"
     2336
     2337
     2338
    22772339                       "# else\n"
    2278                        + build32Key.arg("debug") + "\"\n"
    2279                        "# endif\n"
    2280                        "#else\n"
    22812340                       // Release builds
    2282                        "# if (defined(WIN64) || defined(_WIN64) || defined(__WIN64__))\n"
     2341                       "# if (defined(WIN64) || defined(_WIN64) || defined(__WIN64__))\n"
    22832342                       + build64Key.arg("release") + "\"\n"
    2284                        "# else\n"
     2343                       "# else\n"
    22852344                       + build32Key.arg("release") + "\"\n"
     2345
    22862346                       "# endif\n"
    22872347                       "#endif\n";
     
    29683028            qconfigList += "QT_NO_PRINTER";
    29693029            qconfigList += "QT_NO_SYSTEMTRAYICON";
     3030
     3031
    29703032        }
    29713033
     
    36463708                    txt << "all:\n";
    36473709                    txt << "\t" << args.join(" ") << "\n";
    3648                     txt << "\t" << dictionary[ "MAKE" ] << " -f " << it->target << "\n";
     3710                    txt << "\t -f " << it->target << "\n";
    36493711                    txt << "first: all\n";
    36503712                    txt << "qmake:\n";
Note: See TracChangeset for help on using the changeset viewer.