summaryrefslogtreecommitdiff
path: root/indra/viewer_components/updater/llupdatechecker.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2013-03-05 16:47:03 -0500
committerOz Linden <oz@lindenlab.com>2013-03-05 16:47:03 -0500
commit1676dae754d19db28c9efafd90f38d0561fe3d17 (patch)
tree159b7c13a9e18009e73dc47853f8770843956226 /indra/viewer_components/updater/llupdatechecker.cpp
parent8a0363c3c70e6444a56fc7cbf1a1504371143e14 (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/llupdatechecker.cpp')
-rw-r--r--indra/viewer_components/updater/llupdatechecker.cpp13
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