diff options
| author | Oz Linden <oz@lindenlab.com> | 2014-03-24 14:15:56 -0400 | 
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2014-03-24 14:15:56 -0400 | 
| commit | 6db0a2a7ea60df31f4d5deb84f2135bf2ea9f955 (patch) | |
| tree | ba67138361e3af388174bfca2bf0cb5982bf47db /indra/newview | |
| parent | cb2bd577099f87881d467249cac679200bb367f0 (diff) | |
| parent | 0bc8e67ebb969888364395b8ceea02393d14e9f5 (diff) | |
merge changes for DRTVWR-360
Diffstat (limited to 'indra/newview')
| -rwxr-xr-x | indra/newview/viewer_manifest.py | 17 | 
1 files changed, 15 insertions, 2 deletions
| diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index fe0774b409..f7b3a45e8d 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -7,7 +7,7 @@  $LicenseInfo:firstyear=2006&license=viewerlgpl$  Second Life Viewer Source Code -Copyright (C) 2006-2011, Linden Research, Inc. +Copyright (C) 2006-2014, Linden Research, Inc.  This library is free software; you can redistribute it and/or  modify it under the terms of the GNU Lesser General Public @@ -749,7 +749,6 @@ class Darwin_i386_Manifest(ViewerManifest):                                  "libcollada14dom.dylib",                                  "libexpat.1.5.2.dylib",                                  "libexception_handler.dylib", -                                "libfmodex.dylib",                                  "libGLOD.dylib",                                  ):                      dylibs += path_optional(os.path.join(libdir, libfile), libfile) @@ -765,6 +764,20 @@ class Darwin_i386_Manifest(ViewerManifest):                                  'SLVoice',                                  ):                       self.path2basename(libdir, libfile) + +                # dylibs that vary based on configuration +                if self.args['configuration'].lower() == 'debug': +                    for libfile in ( +                                "libfmodexL.dylib", +                                ): +                        dylibs += path_optional(os.path.join("../packages/lib/debug", +                                                             libfile), libfile) +                else: +                    for libfile in ( +                                "libfmodex.dylib", +                                ): +                        dylibs += path_optional(os.path.join("../packages/lib/release", +                                                             libfile), libfile)                  # our apps                  for app_bld_dir, app in (("mac_crash_logger", "mac-crash-logger.app"), | 
