OSX doesn't get the latest and greatest things

This commit is contained in:
Ian McInerney 2021-03-23 21:44:34 +00:00
parent df84a90f6c
commit d430fae05d
2 changed files with 4 additions and 2 deletions

View File

@ -108,7 +108,8 @@ wxString GetVersionInfoData( const wxString& aTitle, bool aHtml, bool aBrief )
aMsg << eol;
aMsg << "Platform: " << wxGetOsDescription() << ", "
#if wxCHECK_VERSION( 3, 1, 5 )
// TODO (ISM): Remove OSX conditional once our wx fork is running released 3.1.5
#if wxCHECK_VERSION( 3, 1, 5 ) && !defined( __WXOSX__ )
<< platform.GetBitnessName() << ", "
#else
<< platform.GetArchName() << ", "

View File

@ -100,7 +100,8 @@ static void buildKicadAboutBanner( EDA_BASE_FRAME* aParent, ABOUT_APP_INFO& aInf
wxPlatformInfo platformInfo;
libVersion << "Platform: " << wxGetOsDescription() << ", "
#if wxCHECK_VERSION( 3, 1, 5 )
// TODO (ISM): Remove OSX conditional once our wx fork is running released 3.1.5
#if wxCHECK_VERSION( 3, 1, 5 ) && !defined( __WXOSX__ )
<< platformInfo.GetBitnessName();
#else
<< platformInfo.GetArchName();