diff options
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/cmake/LLAddBuildTest.cmake | 2 | ||||
| -rwxr-xr-x | indra/llcorehttp/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | indra/newview/VIEWER_VERSION.txt | 2 | ||||
| -rwxr-xr-x | indra/newview/installers/windows/installer_template.nsi | 21 | ||||
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 12 | 
5 files changed, 29 insertions, 10 deletions
| diff --git a/indra/cmake/LLAddBuildTest.cmake b/indra/cmake/LLAddBuildTest.cmake index 9bb3077797..068aeea212 100755 --- a/indra/cmake/LLAddBuildTest.cmake +++ b/indra/cmake/LLAddBuildTest.cmake @@ -211,7 +211,7 @@ FUNCTION(LL_ADD_INTEGRATION_TEST    if (WINDOWS)      SET_TARGET_PROPERTIES(INTEGRATION_TEST_${testname}          PROPERTIES -        LINK_FLAGS "/debug /NODEFAULTLIB:LIBCMT /SUBSYSTEM:WINDOWS" +        LINK_FLAGS "/debug /NODEFAULTLIB:LIBCMT /SUBSYSTEM:CONSOLE"          LINK_FLAGS_DEBUG "/NODEFAULTLIB:\"LIBCMT;LIBCMTD;MSVCRT\" /INCREMENTAL:NO"          LINK_FLAGS_RELEASE ""          ) diff --git a/indra/llcorehttp/CMakeLists.txt b/indra/llcorehttp/CMakeLists.txt index 9adfd0ed62..a0b1ea13b1 100755 --- a/indra/llcorehttp/CMakeLists.txt +++ b/indra/llcorehttp/CMakeLists.txt @@ -174,7 +174,7 @@ if (LL_TESTS)      # The following come from LLAddBuildTest.cmake's INTEGRATION_TEST_xxxx target.      set_target_properties(http_texture_load                            PROPERTIES -                          LINK_FLAGS "/debug /NODEFAULTLIB:LIBCMT /SUBSYSTEM:WINDOWS ${TCMALLOC_LINK_FLAGS}" +                          LINK_FLAGS "/debug /NODEFAULTLIB:LIBCMT /SUBSYSTEM:CONSOLE ${TCMALLOC_LINK_FLAGS}"                            LINK_FLAGS_DEBUG "/NODEFAULTLIB:\"LIBCMT;LIBCMTD;MSVCRT\" /INCREMENTAL:NO"                            LINK_FLAGS_RELEASE ""                            ) diff --git a/indra/newview/VIEWER_VERSION.txt b/indra/newview/VIEWER_VERSION.txt index 3609cf7707..f5c2a4050b 100644 --- a/indra/newview/VIEWER_VERSION.txt +++ b/indra/newview/VIEWER_VERSION.txt @@ -1 +1 @@ -3.6.13 +3.6.14 diff --git a/indra/newview/installers/windows/installer_template.nsi b/indra/newview/installers/windows/installer_template.nsi index dd316cdbdf..c4f503ef4e 100755 --- a/indra/newview/installers/windows/installer_template.nsi +++ b/indra/newview/installers/windows/installer_template.nsi @@ -301,6 +301,23 @@ Function CheckNetworkConnection      Return
  FunctionEnd
 +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 +; Function CheckOldExeName
 +; Viewer versions < 3.6.12 used the name 'SecondLife.exe'
 +; If that name is found in the install folder, delete it to invalidate any
 +; old shortcuts to it that may be in non-standard locations, so that the user
 +; does not end up running the old version (potentially getting caught in an 
 +; infinite update loop). See MAINT-3575
 +; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 +
 +Function CheckOldExeName
 +  IfFileExists "$INSTDIR\SecondLife.exe" CHECKOLDEXE_FOUND CHECKOLDEXE_DONE
 +
 +CHECKOLDEXE_FOUND:
 +  Delete "$INSTDIR\SecondLife.exe"
 +CHECKOLDEXE_DONE:
 +FunctionEnd
 +
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ; Function CheckWillUninstallV2               
 @@ -673,6 +690,9 @@ Delete "$INSTDIR\*.glsl"  Delete "$INSTDIR\motions\*.lla"
  Delete "$INSTDIR\trial\*.html"
  Delete "$INSTDIR\newview.exe"
 +Delete "$INSTDIR\SecondLife.exe"
 +;; MAINT-3099 workaround - prevent these log files, if present, from causing a user alert
 +Delete "$INSTDIR\VivoxVoiceService-*.log"
  ;; Remove entire help directory
  Delete "$INSTDIR\help\Advanced\*"
  RMDir  "$INSTDIR\help\Advanced"
 @@ -920,6 +940,7 @@ Call CheckIfAlreadyCurrent		; Make sure that we haven't already installed this v  Call CloseSecondLife			; Make sure we're not running
  Call CheckNetworkConnection		; ping secondlife.com
  Call CheckWillUninstallV2               ; See if a V2 install exists and will be removed.
 +Call CheckOldExeName                    ; Clean up a previous version of the exe
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  StrCmp $DO_UNINSTALL_V2 "" PRESERVE_DONE
 diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 9e8623c1f9..9a617c2a13 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -136,13 +136,11 @@ class ViewerManifest(LLManifest):                      settings_install['CmdLineGridChoice']['Value'] = self.grid()                      print "Set CmdLineGridChoice in settings_install.xml to '%s'" % self.grid() -                # did we actually copy anything into settings_install dict? -                if settings_install: -                    # put_in_file(src=) need not be an actual pathname; it -                    # only needs to be non-empty -                    self.put_in_file(llsd.format_pretty_xml(settings_install), -                                     "settings_install.xml", -                                     src="environment") +                # put_in_file(src=) need not be an actual pathname; it +                # only needs to be non-empty +                self.put_in_file(llsd.format_pretty_xml(settings_install), +                                 "settings_install.xml", +                                 src="environment")                  self.end_prefix("app_settings") | 
