Skip to content
Snippets Groups Projects
Commit 1676dae7 authored by Oz Linden's avatar Oz Linden
Browse files

remove old hack for legacy mac updates (no system that needed that will run this version anyway)

parent 8a0363c3
No related branches found
No related tags found
No related merge requests found
...@@ -190,18 +190,7 @@ std::string LLUpdateChecker::Implementation::buildUrl(std::string const & hostUr ...@@ -190,18 +190,7 @@ std::string LLUpdateChecker::Implementation::buildUrl(std::string const & hostUr
#ifdef LL_WINDOWS #ifdef LL_WINDOWS
static const char * platform = "win"; static const char * platform = "win";
#elif LL_DARWIN #elif LL_DARWIN
long versMin; static const char *platform = "mac";
Gestalt(gestaltSystemVersionMinor, &versMin);
static const char *platform;
if (versMin == 5) //OS 10.5
{
platform = "mac_legacy";
}
else
{
platform = "mac";
}
#elif LL_LINUX #elif LL_LINUX
static const char * platform = "lnx"; static const char * platform = "lnx";
#else #else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment