Merge pull request #650 from rclasen/fix-win

make srmio details in version dialog conditionally
This commit is contained in:
Mark Liversedge
2013-06-25 03:14:51 -07:00

View File

@@ -145,7 +145,11 @@ QString GcCrashDialog::versionHTML()
QString srmio = "none";
#ifdef GC_HAVE_SRMIO
srmio = QString("%1 %2").arg(QString(srmio_version).replace("srmio ", "")).arg(srmio_commit);
#ifdef SRMIO_VERSION
srmio = QString("%1 %2").arg(SRMIO_VERSION).arg(srmio_commit);
#else
srmio = "yes";
#endif
#endif
// -- D2XX ----