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

Skip to content
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::p 559B repare() {
#elif _WIN32
// TODO: improve Windows version detection
_operatingSystem = "windows";
#elif __apple__
#elif __APPLE__
// TODO: improve MacOS version detection
_operatingSystem = "macos";
#else
Expand Down
0