8000 properly detect MacOS by jsteemann · Pull Request #14771 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

properly detect MacOS #14771

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub&rd 8000 quo;, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arangod/RestServer/EnvironmentFeature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void EnvironmentFeature::prepare() {
#elif _WIN32
// TODO: improve Windows version detection
_operatingSystem = "windows";
#elif __apple__
#elif __APPLE__
// TODO: improve MacOS version detection
_operatingSystem = "macos";
#else
Expand Down
0