mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
make srmio details in version dialog conditionally
... so that GC keeps building with older srmio versions. [cherry picked from master]
This commit is contained in:
committed by
Mark Liversedge
parent
d8a5a62f71
commit
4b19b2bb99
@@ -145,7 +145,11 @@ QString GcCrashDialog::versionHTML()
|
||||
QString srmio = "none";
|
||||
|
||||
#ifdef GC_HAVE_SRMIO
|
||||
srmio = QString("%1 commit %2").arg(srmio_version).arg(srmio_commit);
|
||||
#ifdef SRMIO_VERSION
|
||||
srmio = QString("%1 %2").arg(SRMIO_VERSION).arg(srmio_commit);
|
||||
#else
|
||||
srmio = "yes";
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// -- D2XX ----
|
||||
|
||||
Reference in New Issue
Block a user