if(!exists(bd))
return -1;
- QString dllStem = stem + QTDLL_POSTFIX;
QMakeMetaInfo libinfo;
- bool libInfoRead = libinfo.readLib(bd + Option::dir_sep + dllStem);
+ bool libInfoRead = libinfo.readLib(bd + Option::dir_sep + stem);
// If the library, for which we're trying to find the highest version
// number, is a static library
dirEntryListCache.insert(bd, entries);
}
- QRegExp regx(QString("((lib)?%1([0-9]*)).(%2|prl)$").arg(dllStem).arg(ext), Qt::CaseInsensitive);
+ QRegExp regx(QString("((lib)?%1([0-9]*)).(%2|prl)$").arg(stem).arg(ext), Qt::CaseInsensitive);
for(QStringList::Iterator it = entries.begin(); it != entries.end(); ++it) {
if(regx.exactMatch((*it))) {
if (!regx.cap(3).isEmpty()) {
QT_BEGIN_NAMESPACE
-// In the Qt evaluation and educational version, we have a postfix in the
-// library name (e.g. qtmteval301.dll). QTDLL_POSTFIX is used for this.
-// A script modifies these lines when building eval/edu version, so be careful
-// when changing them.
-#ifndef QTDLL_POSTFIX
-#define QTDLL_POSTFIX ""
-#endif
-
class Win32MakefileGenerator : public MakefileGenerator
{
public: