diff options
| author | Oz Linden <oz@lindenlab.com> | 2013-03-05 16:47:03 -0500 | 
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2013-03-05 16:47:03 -0500 | 
| commit | 1676dae754d19db28c9efafd90f38d0561fe3d17 (patch) | |
| tree | 159b7c13a9e18009e73dc47853f8770843956226 /indra/viewer_components/updater | |
| parent | 8a0363c3c70e6444a56fc7cbf1a1504371143e14 (diff) | |
remove old hack for legacy mac updates (no system that needed that will run this version anyway)
Diffstat (limited to 'indra/viewer_components/updater')
| -rw-r--r-- | indra/viewer_components/updater/llupdatechecker.cpp | 13 | 
1 files changed, 1 insertions, 12 deletions
diff --git a/indra/viewer_components/updater/llupdatechecker.cpp b/indra/viewer_components/updater/llupdatechecker.cpp index 734747c811..10763b0adc 100644 --- a/indra/viewer_components/updater/llupdatechecker.cpp +++ b/indra/viewer_components/updater/llupdatechecker.cpp @@ -190,18 +190,7 @@ std::string LLUpdateChecker::Implementation::buildUrl(std::string const & hostUr  #ifdef LL_WINDOWS  	static const char * platform = "win";  #elif LL_DARWIN -    long versMin; -    Gestalt(gestaltSystemVersionMinor, &versMin); -     -    static const char *platform; -    if (versMin == 5) //OS 10.5 -    { -        platform = "mac_legacy"; -    } -    else  -    { -        platform = "mac"; -    } +    static const char *platform = "mac";  #elif LL_LINUX  	static const char * platform = "lnx";  #else  | 
