mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix build on older Macs
In commit 39ffb0fced
("Fix Subsurface build with Qt 5.4.1 and later") Thiago
was a bit too aggressive removing some of our ifdefs for building with older
versions of the SDK...
I need at least this patch to still build on the machine that I use to create
the official binaries.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
a37abc4d49
commit
d8c44f3470
1 changed files with 4 additions and 0 deletions
|
@ -551,7 +551,11 @@ QString SubsurfaceSysInfo::prettyProductName()
|
||||||
case MV_MAVERICKS:
|
case MV_MAVERICKS:
|
||||||
basename = "OS X Mavericks (";
|
basename = "OS X Mavericks (";
|
||||||
break;
|
break;
|
||||||
|
#ifdef MV_YOSEMITE
|
||||||
case MV_YOSEMITE:
|
case MV_YOSEMITE:
|
||||||
|
#else
|
||||||
|
case 0x000C: // MV_YOSEMITE
|
||||||
|
#endif
|
||||||
basename = "OS X Yosemite (";
|
basename = "OS X Yosemite (";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue