mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 06:48:38 +09:00
Issue #1905 - Part 4c - Follow Firefox and Safari in reporting "Intel" for Mac ARM64 devices. Based on Mozilla bug 1655285.
This commit is contained in:
parent
7e63a3f440
commit
95f1786bb4
2 changed files with 11 additions and 3 deletions
|
|
@ -825,6 +825,15 @@ nsHttpHandler::InitUserAgentComponents()
|
|||
PR_smprintf_free(buf);
|
||||
}
|
||||
}
|
||||
#elif defined (XP_MACOSX)
|
||||
#if defined(__ppc__)
|
||||
mOscpu.AssignLiteral("PPC Mac OS X");
|
||||
#else
|
||||
mOscpu.AssignLiteral("Intel Mac OS X");
|
||||
#endif
|
||||
SInt32 majorVersion = nsCocoaFeatures::macOSVersionMajor();
|
||||
SInt32 minorVersion = nsCocoaFeatures::macOSVersionMinor();
|
||||
mOscpu += nsPrintfCString(" %d.%d", majorVersion, minorVersion);
|
||||
#elif defined (XP_UNIX)
|
||||
struct utsname name;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue