Changeset 83 for trunk


Ignore:
Timestamp:
Apr 15, 2006, 5:29:11 PM (19 years ago)
Author:
dmik
Message:

Don't try to substitute 'qt-mt' with 'qt' and vice versa when processing .prl files on OS/2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/qmake/generators/makefile.cpp

    r16 r83  
    12501250    }
    12511251    meta_file = fileFixify(meta_file);
     1252#if defined(Q_OS_OS2)
     1253    // As far as I understand, this code tries to load "qt-mt" prl if "qt" is
     1254    // specified, but not found, and vice versa. First of all, I don't get why
     1255    // we should do that (the user has specified he wants a particular single-
     1256    // threaded or multi-threadad version using the "thread" CONFIG keyword).
     1257    // And more over, the -mt suffix is no more used on OS/2.
     1258#else   
    12521259    if(!QMakeMetaInfo::libExists(fileFixify(meta_file, QDir::currentDirPath(), Option::output_dir)) &&
    12531260       project->isActiveConfig("qt")) {
     
    12791286        }
    12801287    }
     1288#endif   
    12811289    QString real_meta_file = Option::fixPathToLocalOS(meta_file);
    12821290    if(project->variables()["QMAKE_PRL_INTERNAL_FILES"].findIndex(QMakeMetaInfo::findLib(meta_file)) != -1) {
Note: See TracChangeset for help on using the changeset viewer.