Merge branch 'DRTVWR-503-maint' of https://bitbucket.org/lindenlab/viewer
commit
ea54dd6ea5
|
|
@ -2130,6 +2130,12 @@ endif (FMODSTUDIO)
|
|||
# set_source_files_properties(llstartup.cpp PROPERTIES COMPILE_FLAGS "${LLSTARTUP_COMPILE_FLAGS}")
|
||||
set_source_files_properties(llstartup.cpp llfloaterpreference.cpp PROPERTIES COMPILE_FLAGS "${LLSTARTUP_COMPILE_FLAGS}")
|
||||
# </FS:Ansariel>
|
||||
|
||||
if (HAVOK OR HAVOK_TPV)
|
||||
set(LLSTARTUP_COMPILE_FLAGS "${LLSTARTUP_COMPILE_FLAGS} -DLL_HAVOK")
|
||||
endif (HAVOK OR HAVOK_TPV)
|
||||
|
||||
# progress view disables/enables icons based on available packages
|
||||
set_source_files_properties(llprogressview.cpp PROPERTIES COMPILE_FLAGS "${LLSTARTUP_COMPILE_FLAGS}")
|
||||
|
||||
list(APPEND viewer_SOURCE_FILES ${viewer_HEADER_FILES})
|
||||
|
|
|
|||
|
|
@ -483,31 +483,30 @@ void LLProgressView::initLogos()
|
|||
// with no internal paddings so it gets additional padding
|
||||
icon_width = 77;
|
||||
icon_height = 21;
|
||||
S32 pad_y = 4;
|
||||
S32 pad_fmod_y = 4;
|
||||
texture_start_x++;
|
||||
loadLogo(temp_str + "fmod_logo.png",
|
||||
image_codec,
|
||||
LLRect(texture_start_x, texture_start_y + pad_y + icon_height, texture_start_x + icon_width, texture_start_y + pad_y),
|
||||
LLRect(texture_start_x, texture_start_y + pad_fmod_y + icon_height, texture_start_x + icon_width, texture_start_y + pad_fmod_y),
|
||||
default_clip,
|
||||
default_clip);
|
||||
|
||||
texture_start_x += icon_width + default_pad + 1;
|
||||
#endif
|
||||
|
||||
#ifdef HAVOK_TPV // <FS:Ansariel> Don't show on non-Havok builds
|
||||
#endif //LL_FMODSTUDIO
|
||||
#ifdef LL_HAVOK
|
||||
// original image size is 342x113, central element is on a larger side
|
||||
// plus internal padding, so it gets slightly more height than desired 32
|
||||
icon_width = 88;
|
||||
icon_height = 29;
|
||||
pad_y = -1;
|
||||
S32 pad_havok_y = -1;
|
||||
loadLogo(temp_str + "havok_logo.png",
|
||||
image_codec,
|
||||
LLRect(texture_start_x, texture_start_y + pad_y + icon_height, texture_start_x + icon_width, texture_start_y + pad_y),
|
||||
LLRect(texture_start_x, texture_start_y + pad_havok_y + icon_height, texture_start_x + icon_width, texture_start_y + pad_havok_y),
|
||||
default_clip,
|
||||
default_clip);
|
||||
|
||||
texture_start_x += icon_width + default_pad;
|
||||
#endif // <FS:Ansariel> Don't show on non-Havok builds
|
||||
#endif //LL_HAVOK
|
||||
|
||||
// 108x41
|
||||
icon_width = 74;
|
||||
|
|
|
|||
|
|
@ -1427,7 +1427,7 @@ class DarwinManifest(ViewerManifest):
|
|||
"libfmod.dylib",
|
||||
):
|
||||
dylibs += path_optional(os.path.join(relpkgdir, libfile), libfile)
|
||||
|
||||
|
||||
# our apps
|
||||
executable_path = {}
|
||||
for app_bld_dir, app in (("mac_crash_logger", "mac-crash-logger.app"),
|
||||
|
|
@ -2169,7 +2169,6 @@ class Linux_i686_Manifest(LinuxManifest):
|
|||
print "Skipping libfmod.so - not found"
|
||||
pass
|
||||
|
||||
|
||||
# Vivox runtimes
|
||||
with self.prefix(src=relpkgdir, dst="bin"):
|
||||
self.path("SLVoice")
|
||||
|
|
@ -2262,6 +2261,7 @@ def symlinkf(src, dst):
|
|||
# </FS:Ansariel> Added back for Mac compatibility reason
|
||||
|
||||
if __name__ == "__main__":
|
||||
# fmodstudio and openal can be used simultaneously and controled by environment
|
||||
extra_arguments = [
|
||||
dict(name='bugsplat', description="""BugSplat database to which to post crashes,
|
||||
if BugSplat crash reporting is desired""", default=''),
|
||||
|
|
|
|||
Loading…
Reference in New Issue