diff options
author | callum <none@none> | 2011-01-05 15:52:43 -0800 |
---|---|---|
committer | callum <none@none> | 2011-01-05 15:52:43 -0800 |
commit | b9ca6c553cf158c5b485947f8b560228a196c1d7 (patch) | |
tree | df710eb467a1c0fbfb5d7906232f23a36f6fc7c1 /indra/viewer_components/updater/llupdateinstaller.cpp | |
parent | ed3ea14984e322462ed466805e47b29a6f658279 (diff) | |
parent | d5a0c56bf5d933b7cee072cbc1851a626e672ded (diff) |
Merge with viewer-development
Diffstat (limited to 'indra/viewer_components/updater/llupdateinstaller.cpp')
-rw-r--r-- | indra/viewer_components/updater/llupdateinstaller.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/indra/viewer_components/updater/llupdateinstaller.cpp b/indra/viewer_components/updater/llupdateinstaller.cpp index 6e69bcf28b..d450c068ad 100644 --- a/indra/viewer_components/updater/llupdateinstaller.cpp +++ b/indra/viewer_components/updater/llupdateinstaller.cpp @@ -31,6 +31,12 @@ #include "lldir.h" +#if defined(LL_WINDOWS) +#pragma warning(disable: 4702) // disable 'unreachable code' so we can use lexical_cast (really!). +#endif +#include <boost/lexical_cast.hpp> + + namespace { class RelocateError {}; @@ -47,7 +53,10 @@ namespace { } -int ll_install_update(std::string const & script, std::string const & updatePath, LLInstallScriptMode mode) +int ll_install_update(std::string const & script, + std::string const & updatePath, + bool required, + LLInstallScriptMode mode) { std::string actualScriptPath; switch(mode) { @@ -73,6 +82,7 @@ int ll_install_update(std::string const & script, std::string const & updatePath launcher.setExecutable(actualScriptPath); launcher.addArgument(updatePath); launcher.addArgument(ll_install_failed_marker_path().c_str()); + launcher.addArgument(boost::lexical_cast<std::string>(required)); int result = launcher.launch(); launcher.orphan(); |