diff options
| author | Lars Næsbye Christensen <lars@naesbye.dk> | 2024-01-11 11:32:15 +0100 | 
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-01-11 19:11:33 +0200 | 
| commit | da967da9c7aa0d88f478d476e8bb059ba79ca818 (patch) | |
| tree | 0ad4c59c5da937609844ac2970b908ef69d95d8a | |
| parent | 91a6aa95e7b6303c4fd7b2394ee2ec422f3979ba (diff) | |
Rename OS X to macOS, mostly in comments
We only support 10.13+ now, and it's been called macOS since 10.12. References in code to older versions are unchanged.
| -rw-r--r-- | indra/cmake/Variables.cmake | 2 | ||||
| -rwxr-xr-x | indra/lib/python/indra/util/llmanifest.py | 4 | ||||
| -rw-r--r-- | indra/llcommon/llerror.cpp | 2 | ||||
| -rw-r--r-- | indra/llcommon/llsys.cpp | 6 | ||||
| -rw-r--r-- | indra/llcommon/lluuid.cpp | 2 | ||||
| -rw-r--r-- | indra/llfilesystem/lldir_mac.cpp | 2 | ||||
| -rw-r--r-- | indra/llfilesystem/lldir_mac.h | 2 | ||||
| -rw-r--r-- | indra/llfilesystem/lldir_utils_objc.h | 2 | ||||
| -rw-r--r-- | indra/llfilesystem/lldir_utils_objc.mm | 2 | ||||
| -rw-r--r-- | indra/llmessage/net.cpp | 2 | ||||
| -rw-r--r-- | indra/llrender/llfontgl.cpp | 2 | ||||
| -rw-r--r-- | indra/llrender/llimagegl.cpp | 2 | ||||
| -rw-r--r-- | indra/llwindow/llkeyboard.h | 2 | ||||
| -rw-r--r-- | indra/llwindow/llwindowmacosx.cpp | 4 | ||||
| -rw-r--r-- | indra/media_plugins/cef/mac_volume_catcher.cpp | 2 | ||||
| -rw-r--r-- | indra/media_plugins/cef/media_plugin_cef.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/app_settings/settings.xml | 2 | ||||
| -rw-r--r-- | indra/newview/llappviewermacosx-objc.mm | 2 | ||||
| -rw-r--r-- | indra/newview/llappviewermacosx.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llviewerjoystick.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llvoicevivox.cpp | 2 | 
21 files changed, 25 insertions, 25 deletions
| diff --git a/indra/cmake/Variables.cmake b/indra/cmake/Variables.cmake index af1f16d04d..9bc17df32a 100644 --- a/indra/cmake/Variables.cmake +++ b/indra/cmake/Variables.cmake @@ -5,7 +5,7 @@  #  # Platform variables:  # -#   DARWIN  - Mac OS X +#   DARWIN  - macOS  #   LINUX   - Linux  #   WINDOWS - Windows diff --git a/indra/lib/python/indra/util/llmanifest.py b/indra/lib/python/indra/util/llmanifest.py index bcb9d884c3..20c0e01576 100755 --- a/indra/lib/python/indra/util/llmanifest.py +++ b/indra/lib/python/indra/util/llmanifest.py @@ -116,7 +116,7 @@ BASE_ARGUMENTS=[      dict(name='build', description='Build directory.', default=DEFAULT_SRCTREE),      dict(name='buildtype', description='Build type (i.e. Debug, Release, RelWithDebInfo).', default=None),      dict(name='bundleid', -         description="""The Mac OS X Bundle identifier.""", +         description="""The macOS Bundle identifier.""",           default="com.secondlife.indra.viewer"),      dict(name='channel',           description="""The channel to use for updates, packaging, settings name, etc.""", @@ -146,7 +146,7 @@ BASE_ARGUMENTS=[      dict(name='signature',           description="""This specifies an identity to sign the viewer with, if any.          If no value is supplied, the default signature will be used, if any. Currently -        only used on Mac OS X.""", +        only used on macOS.""",           default=None),      dict(name='source',           description='Source directory.', diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index 414515854a..19c285ea5a 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -700,7 +700,7 @@ namespace      bool shouldLogToStderr()      {  #if LL_DARWIN -        // On Mac OS X, stderr from apps launched from the Finder goes to the +        // On macOS, stderr from apps launched from the Finder goes to the          // console log.  It's generally considered bad form to spam too much          // there. That scenario can be detected by noticing that stderr is a          // character device (S_IFCHR). diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp index 938685bae6..d3f99a413d 100644 --- a/indra/llcommon/llsys.cpp +++ b/indra/llcommon/llsys.cpp @@ -269,9 +269,9 @@ LLOSInfo::LLOSInfo() :  #elif LL_DARWIN  	// Initialize mOSStringSimple to something like: -	// "Mac OS X 10.6.7" +	// "macOS 10.13.1"  	{ -		const char * DARWIN_PRODUCT_NAME = "Mac OS X"; +		const char * DARWIN_PRODUCT_NAME = "macOS";  		int64_t major_version, minor_version, bugfix_version = 0; @@ -294,7 +294,7 @@ LLOSInfo::LLOSInfo() :  	}  	// Initialize mOSString to something like: -	// "Mac OS X 10.6.7 Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386 i386" +	// "macOS 10.13.1 Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386 i386"  	struct utsname un;  	if(uname(&un) != -1)  	{		 diff --git a/indra/llcommon/lluuid.cpp b/indra/llcommon/lluuid.cpp index 200add404f..285469f0d4 100644 --- a/indra/llcommon/lluuid.cpp +++ b/indra/llcommon/lluuid.cpp @@ -510,7 +510,7 @@ S32	LLUUID::getNodeID(unsigned char* node_id)  }  #elif LL_DARWIN -// Mac OS X version of the UUID generation code... +// macOS version of the UUID generation code...  /*   * Get an ethernet hardware address, if we can find it...   */ diff --git a/indra/llfilesystem/lldir_mac.cpp b/indra/llfilesystem/lldir_mac.cpp index 9ad8e274b6..0d9695e161 100644 --- a/indra/llfilesystem/lldir_mac.cpp +++ b/indra/llfilesystem/lldir_mac.cpp @@ -1,6 +1,6 @@  /**    * @file lldir_mac.cpp - * @brief Implementation of directory utilities for Mac OS X + * @brief Implementation of directory utilities for macOS   *   * $LicenseInfo:firstyear=2002&license=viewerlgpl$   * Second Life Viewer Source Code diff --git a/indra/llfilesystem/lldir_mac.h b/indra/llfilesystem/lldir_mac.h index 558727ebbc..0290fb773b 100644 --- a/indra/llfilesystem/lldir_mac.h +++ b/indra/llfilesystem/lldir_mac.h @@ -1,6 +1,6 @@  /**    * @file lldir_mac.h - * @brief Definition of directory utilities class for Mac OS X + * @brief Definition of directory utilities class for macOS   *   * $LicenseInfo:firstyear=2000&license=viewerlgpl$   * Second Life Viewer Source Code diff --git a/indra/llfilesystem/lldir_utils_objc.h b/indra/llfilesystem/lldir_utils_objc.h index 59dbeb4aec..48148aad95 100644 --- a/indra/llfilesystem/lldir_utils_objc.h +++ b/indra/llfilesystem/lldir_utils_objc.h @@ -1,6 +1,6 @@  /**    * @file lldir_utils_objc.h - * @brief Definition of directory utilities class for Mac OS X + * @brief Definition of directory utilities class for macOS   *   * $LicenseInfo:firstyear=2020&license=viewerlgpl$   * Second Life Viewer Source Code diff --git a/indra/llfilesystem/lldir_utils_objc.mm b/indra/llfilesystem/lldir_utils_objc.mm index 20540fb93c..01fe9e1f2c 100644 --- a/indra/llfilesystem/lldir_utils_objc.mm +++ b/indra/llfilesystem/lldir_utils_objc.mm @@ -1,6 +1,6 @@  /**    * @file lldir_utils_objc.mm - * @brief Cocoa implementation of directory utilities for Mac OS X + * @brief Cocoa implementation of directory utilities for macOS   *   * $LicenseInfo:firstyear=2020&license=viewerlgpl$   * Second Life Viewer Source Code diff --git a/indra/llmessage/net.cpp b/indra/llmessage/net.cpp index 523bcbb60d..60030bb920 100644 --- a/indra/llmessage/net.cpp +++ b/indra/llmessage/net.cpp @@ -77,7 +77,7 @@ const char* LOOPBACK_ADDRESS_STRING = "127.0.0.1";  const char* BROADCAST_ADDRESS_STRING = "255.255.255.255";  #if LL_DARWIN -	// Mac OS X returns an error when trying to set these to 400000.  Smaller values succeed. +	// macOS returns an error when trying to set these to 400000.  Smaller values succeed.  	const int	SEND_BUFFER_SIZE	= 200000;  	const int	RECEIVE_BUFFER_SIZE	= 200000;  #else // LL_DARWIN diff --git a/indra/llrender/llfontgl.cpp b/indra/llrender/llfontgl.cpp index 15fddbc99f..484fa9d82c 100644 --- a/indra/llrender/llfontgl.cpp +++ b/indra/llrender/llfontgl.cpp @@ -1110,7 +1110,7 @@ LLFontGL* LLFontGL::getFontDefault()  std::string LLFontGL::getFontPathSystem()  {  #if LL_DARWIN -    // HACK for Mac OS X +    // HACK for macOS      return "/System/Library/Fonts/";  #elif LL_WINDOWS diff --git a/indra/llrender/llimagegl.cpp b/indra/llrender/llimagegl.cpp index bbedcf360c..6315b2cd7c 100644 --- a/indra/llrender/llimagegl.cpp +++ b/indra/llrender/llimagegl.cpp @@ -56,7 +56,7 @@ const F32 MIN_TEXTURE_LIFETIME = 10.f;  U32 wpo2(U32 i); -// texture memory accounting (for OS X) +// texture memory accounting (for macOS)  static LLMutex sTexMemMutex;  static std::unordered_map<U32, U64> sTextureAllocs;  static U64 sTextureBytes = 0; diff --git a/indra/llwindow/llkeyboard.h b/indra/llwindow/llkeyboard.h index dad150e3c1..2f80a9e89a 100644 --- a/indra/llwindow/llkeyboard.h +++ b/indra/llwindow/llkeyboard.h @@ -77,7 +77,7 @@ public:  	virtual BOOL	handleKeyDown(const U16 key, MASK mask) = 0;  #ifdef LL_DARWIN -	// We only actually use this for OS X. +	// We only actually use this for macOS.  	virtual void	handleModifier(MASK mask) = 0;  #endif // LL_DARWIN diff --git a/indra/llwindow/llwindowmacosx.cpp b/indra/llwindow/llwindowmacosx.cpp index 778e5d3898..b317f00ae7 100644 --- a/indra/llwindow/llwindowmacosx.cpp +++ b/indra/llwindow/llwindowmacosx.cpp @@ -1249,7 +1249,7 @@ F32 LLWindowMacOSX::getNativeAspectRatio()  F32 LLWindowMacOSX::getPixelAspectRatio()  { -	//OS X always enforces a 1:1 pixel aspect ratio, regardless of video mode +	//macOS always enforces a 1:1 pixel aspect ratio, regardless of video mode  	return 1.f;  } @@ -1281,7 +1281,7 @@ void LLWindowMacOSX::afterDialog()  void LLWindowMacOSX::flashIcon(F32 seconds)  { -	// For consistency with OS X conventions, the number of seconds given is ignored and +	// For consistency with macOS conventions, the number of seconds given is ignored and  	// left up to the OS (which will actually bounce it for one second).  	requestUserAttention();  } diff --git a/indra/media_plugins/cef/mac_volume_catcher.cpp b/indra/media_plugins/cef/mac_volume_catcher.cpp index dddb9c2077..dafe545d09 100644 --- a/indra/media_plugins/cef/mac_volume_catcher.cpp +++ b/indra/media_plugins/cef/mac_volume_catcher.cpp @@ -1,6 +1,6 @@  /**    * @file mac_volume_catcher.cpp - * @brief A Mac OS X specific hack to control the volume level of all audio channels opened by a process. + * @brief A macOS specific hack to control the volume level of all audio channels opened by a process.   *   * @cond   * $LicenseInfo:firstyear=2010&license=viewerlgpl$ diff --git a/indra/media_plugins/cef/media_plugin_cef.cpp b/indra/media_plugins/cef/media_plugin_cef.cpp index 43d3a32e64..d5e17ba536 100644 --- a/indra/media_plugins/cef/media_plugin_cef.cpp +++ b/indra/media_plugins/cef/media_plugin_cef.cpp @@ -816,7 +816,7 @@ void MediaPluginCEF::receiveMessage(const char* message_string)  				S32 y = message_in.getValueS32("y");  				// only even send left mouse button events to the CEF library -				// (partially prompted by crash in OS X CEF when sending right button events) +				// (partially prompted by crash in macOS CEF when sending right button events)  				// we catch the right click in viewer and display our own context menu anyway  				S32 button = message_in.getValueS32("button");  				dullahan::EMouseButton btn = dullahan::MB_MOUSE_BUTTON_LEFT; diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 00b59f9a4d..8f651a0294 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -9022,7 +9022,7 @@     <key>RenderHiDPI</key>    <map>      <key>Comment</key> -    <string>Enable support for HiDPI displays, like Retina (MacOS X ONLY, requires restart)</string> +    <string>Enable support for HiDPI displays, like Retina (macOS ONLY, requires restart)</string>      <key>Persist</key>      <integer>1</integer>      <key>Type</key> diff --git a/indra/newview/llappviewermacosx-objc.mm b/indra/newview/llappviewermacosx-objc.mm index 17301847e8..81ab4e0feb 100644 --- a/indra/newview/llappviewermacosx-objc.mm +++ b/indra/newview/llappviewermacosx-objc.mm @@ -25,7 +25,7 @@   */   #if !defined LL_DARWIN -	#error "Use only with Mac OS X" +	#error "Use only with macOS"  #endif  #import <Cocoa/Cocoa.h> diff --git a/indra/newview/llappviewermacosx.cpp b/indra/newview/llappviewermacosx.cpp index 8b313a321b..72e38cc1ea 100644 --- a/indra/newview/llappviewermacosx.cpp +++ b/indra/newview/llappviewermacosx.cpp @@ -27,7 +27,7 @@  #include "llviewerprecompiledheaders.h"  #if !defined LL_DARWIN -	#error "Use only with Mac OS X" +	#error "Use only with macOS"  #endif  #define LL_CARBON_CRASH_HANDLER 1 diff --git a/indra/newview/llviewerjoystick.cpp b/indra/newview/llviewerjoystick.cpp index e35cb26ce1..dfa47e82b3 100644 --- a/indra/newview/llviewerjoystick.cpp +++ b/indra/newview/llviewerjoystick.cpp @@ -1414,7 +1414,7 @@ void LLViewerJoystick::setSNDefaults()  #if LL_DARWIN || LL_LINUX  	const float platformScale = 20.f;  	const float platformScaleAvXZ = 1.f; -	// The SpaceNavigator doesn't act as a 3D cursor on OS X / Linux.  +	// The SpaceNavigator doesn't act as a 3D cursor on macOS / Linux.  	const bool is_3d_cursor = false;  #else  	const float platformScale = 1.f; diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp index 3725510b6a..c4cd1779b7 100644 --- a/indra/newview/llvoicevivox.cpp +++ b/indra/newview/llvoicevivox.cpp @@ -5314,7 +5314,7 @@ std::string LLVivoxVoiceClient::nameFromID(const LLUUID &uuid)  	LLStringUtil::replaceChar(result, '+', '-');  	LLStringUtil::replaceChar(result, '/', '_'); -	// If you need to transform a GUID to this form on the Mac OS X command line, this will do so: +	// If you need to transform a GUID to this form on the macOS command line, this will do so:  	// echo -n x && (echo e669132a-6c43-4ee1-a78d-6c82fff59f32 |xxd -r -p |openssl base64|tr '/+' '_-')  	// The reverse transform can be done with: | 
