747f71f
diff -up qt-everywhere-opensource-src-4.8.0/src/tools/uic3/embed.cpp.uic_multilib qt-everywhere-opensource-src-4.8.0/src/tools/uic3/embed.cpp
747f71f
--- qt-everywhere-opensource-src-4.8.0/src/tools/uic3/embed.cpp.uic_multilib	2011-12-08 06:06:03.000000000 +0100
747f71f
+++ qt-everywhere-opensource-src-4.8.0/src/tools/uic3/embed.cpp	2012-02-20 15:17:27.343005746 +0100
747f71f
@@ -152,8 +152,12 @@ void Ui3Reader::embed(const char *projec
747f71f
     for ( it = images.begin(); it != images.end(); ++it )
747f71f
         out << "**      " << *it << "\n";
747f71f
     out << "**\n";
747f71f
+#ifdef TIMESTAMP
747f71f
     out << "** Created: " << QDateTime::currentDateTime().toString() << "\n";
747f71f
     out << "**      by: The User Interface Compiler for Qt version " << QT_VERSION_STR << "\n";
747f71f
+#else
747f71f
+    out << "** Created by: " << QT_VERSION_STR << "\n";
747f71f
+#endif
747f71f
     out << "**\n";
747f71f
     out << "** WARNING! All changes made in this file will be lost!\n";
747f71f
     out << "****************************************************************************/\n";
747f71f
diff -up qt-everywhere-opensource-src-4.8.0/src/tools/uic3/uic.cpp.uic_multilib qt-everywhere-opensource-src-4.8.0/src/tools/uic3/uic.cpp
747f71f
--- qt-everywhere-opensource-src-4.8.0/src/tools/uic3/uic.cpp.uic_multilib	2011-12-08 06:06:03.000000000 +0100
747f71f
+++ qt-everywhere-opensource-src-4.8.0/src/tools/uic3/uic.cpp	2012-02-20 15:20:13.584706037 +0100
747f71f
@@ -146,8 +146,12 @@ void Uic::writeCopyrightHeader(DomUI *ui
747f71f
         out << "/********************************************************************************\n";
747f71f
         out << "** Form generated from reading UI file '" << QFileInfo(opt.inputFile).fileName() << "'\n";
747f71f
         out << "**\n";
747f71f
+#ifdef TIMESTAMP
747f71f
         out << "** Created: " << QDateTime::currentDateTime().toString() << "\n";
747f71f
         out << "**      " << QString::fromLatin1("by: Qt User Interface Compiler version %1\n").arg(QLatin1String(QT_VERSION_STR));
747f71f
+#else
747f71f
+        out << "** Created by: " << QString::fromLatin1("Qt User Interface Compiler version %1\n").arg(QLatin1String(QT_VERSION_STR));
747f71f
+#endif
747f71f
         out << "**\n";
747f71f
         out << "** WARNING! All changes made in this file will be lost when recompiling UI file!\n";
747f71f
         out << "********************************************************************************/\n\n";
747f71f
diff -up qt-everywhere-opensource-src-4.8.0/src/tools/uic/uic.cpp.uic_multilib qt-everywhere-opensource-src-4.8.0/src/tools/uic/uic.cpp
747f71f
--- qt-everywhere-opensource-src-4.8.0/src/tools/uic/uic.cpp.uic_multilib	2011-12-08 06:06:03.000000000 +0100
747f71f
+++ qt-everywhere-opensource-src-4.8.0/src/tools/uic/uic.cpp	2012-02-20 15:13:44.175462520 +0100
747f71f
@@ -139,8 +139,12 @@ void Uic::writeCopyrightHeader(DomUI *ui
747f71f
         out << "/********************************************************************************\n";
747f71f
         out << "** Form generated from reading UI file '" << QFileInfo(opt.inputFile).fileName() << "'\n";
747f71f
         out << "**\n";
747f71f
+#ifdef TIMESTAMP
747f71f
         out << "** Created: " << QDateTime::currentDateTime().toString() << "\n";
747f71f
         out << "**      " << QString::fromLatin1("by: Qt User Interface Compiler version %1\n").arg(QLatin1String(QT_VERSION_STR));
747f71f
+#else
747f71f
+        out << "** Created by: " << QString::fromLatin1("Qt User Interface Compiler version %1\n").arg(QLatin1String(QT_VERSION_STR));
747f71f
+#endif
747f71f
         out << "**\n";
747f71f
         out << "** WARNING! All changes made in this file will be lost when recompiling UI file!\n";
747f71f
         out << "********************************************************************************/\n\n";
747f71f
diff -up qt-everywhere-opensource-src-4.8.0/src/tools/moc/moc.cpp.me qt-everywhere-opensource-src-4.8.0/src/tools/moc/moc.cpp
747f71f
--- qt-everywhere-opensource-src-4.8.0/src/tools/moc/moc.cpp.me	2012-02-20 13:22:38.572628193 +0100
747f71f
+++ qt-everywhere-opensource-src-4.8.0/src/tools/moc/moc.cpp	2012-02-20 14:46:09.981860726 +0100
747f71f
@@ -767,8 +767,10 @@ void Moc::parse()
747f71f
 void Moc::generate(FILE *out)
747f71f
 {
747f71f
 
747f71f
+#ifdef TIMESTAMP
747f71f
     QDateTime dt = QDateTime::currentDateTime();
747f71f
     QByteArray dstr = dt.toString().toLatin1();
747f71f
+#endif
747f71f
     QByteArray fn = filename;
747f71f
     int i = filename.length()-1;
747f71f
     while (i>0 && filename[i-1] != '/' && filename[i-1] != '\\')
747f71f
@@ -777,8 +779,12 @@ void Moc::generate(FILE *out)
747f71f
         fn = filename.mid(i);
747f71f
     fprintf(out, "/****************************************************************************\n"
747f71f
             "** Meta object code from reading C++ file '%s'\n**\n" , (const char*)fn);
747f71f
+#ifdef TIMESTAMP
747f71f
     fprintf(out, "** Created: %s\n"
747f71f
             "**      by: The Qt Meta Object Compiler version %d (Qt %s)\n**\n" , dstr.data(), mocOutputRevision, QT_VERSION_STR);
747f71f
+#else
747f71f
+    fprintf(out, "** Created by: The Qt Meta Object Compiler version %d (Qt %s)\n**\n" , mocOutputRevision, QT_VERSION_STR);
747f71f
+#endif
747f71f
     fprintf(out, "** WARNING! All changes made in this file will be lost!\n"
747f71f
             "*****************************************************************************/\n\n");
747f71f