Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
dea4adf5
Commit
dea4adf5
authored
3 years ago
by
Rye Mutt
Browse files
Options
Downloads
Patches
Plain Diff
Fix compat with older macos
parent
498123fb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/newview/llappviewermacosx.cpp
+10
-3
10 additions, 3 deletions
indra/newview/llappviewermacosx.cpp
indra/newview/llmachineid.cpp
+9
-2
9 additions, 2 deletions
indra/newview/llmachineid.cpp
with
19 additions
and
5 deletions
indra/newview/llappviewermacosx.cpp
+
10
−
3
View file @
dea4adf5
...
@@ -394,9 +394,16 @@ std::string LLAppViewerMacOSX::generateSerialNumber()
...
@@ -394,9 +394,16 @@ std::string LLAppViewerMacOSX::generateSerialNumber()
// JC: Sample code from http://developer.apple.com/technotes/tn/tn1103.html
// JC: Sample code from http://developer.apple.com/technotes/tn/tn1103.html
CFStringRef
serialNumber
=
NULL
;
CFStringRef
serialNumber
=
NULL
;
io_service_t
platformExpert
=
IOServiceGetMatchingService
(
kIOMainPortDefault
,
io_service_t
platformExpert
=
NULL
;
IOServiceMatching
(
"IOPlatformExpertDevice"
));
if
(
__builtin_available
(
macOS
12.0
,
*
))
{
if
(
platformExpert
)
platformExpert
=
IOServiceGetMatchingService
(
kIOMainPortDefault
,
IOServiceMatching
(
"IOPlatformExpertDevice"
));
}
else
{
platformExpert
=
IOServiceGetMatchingService
(
kIOMasterPortDefault
,
IOServiceMatching
(
"IOPlatformExpertDevice"
));
}
if
(
platformExpert
)
{
{
serialNumber
=
(
CFStringRef
)
IORegistryEntryCreateCFProperty
(
platformExpert
,
serialNumber
=
(
CFStringRef
)
IORegistryEntryCreateCFProperty
(
platformExpert
,
CFSTR
(
kIOPlatformSerialNumberKey
),
CFSTR
(
kIOPlatformSerialNumberKey
),
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llmachineid.cpp
+
9
−
2
View file @
dea4adf5
...
@@ -350,8 +350,15 @@ bool LLWMIMethods::getGenericSerialNumber(const BSTR &select, const LPCWSTR &var
...
@@ -350,8 +350,15 @@ bool LLWMIMethods::getGenericSerialNumber(const BSTR &select, const LPCWSTR &var
bool
getSerialNumber
(
unsigned
char
*
unique_id
,
size_t
len
)
bool
getSerialNumber
(
unsigned
char
*
unique_id
,
size_t
len
)
{
{
CFStringRef
serial_cf_str
=
NULL
;
CFStringRef
serial_cf_str
=
NULL
;
io_service_t
platformExpert
=
IOServiceGetMatchingService
(
kIOMainPortDefault
,
io_service_t
platformExpert
=
NULL
;
IOServiceMatching
(
"IOPlatformExpertDevice"
));
if
(
__builtin_available
(
macOS
12.0
,
*
))
{
platformExpert
=
IOServiceGetMatchingService
(
kIOMainPortDefault
,
IOServiceMatching
(
"IOPlatformExpertDevice"
));
}
else
{
platformExpert
=
IOServiceGetMatchingService
(
kIOMasterPortDefault
,
IOServiceMatching
(
"IOPlatformExpertDevice"
));
}
if
(
platformExpert
)
if
(
platformExpert
)
{
{
serial_cf_str
=
(
CFStringRef
)
IORegistryEntryCreateCFProperty
(
platformExpert
,
serial_cf_str
=
(
CFStringRef
)
IORegistryEntryCreateCFProperty
(
platformExpert
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment