10000 properly detect MacOS (#14771) · arangodb/arangodb@aa9c736 · GitHub
[go: up one dir, main page]

Skip to content

Commit aa9c736

Browse files
authored
properly detect MacOS (#14771)
1 parent cd8d048 commit aa9c736

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arangod/RestServer/EnvironmentFeature.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ void EnvironmentFeature::prepare() {
7979
#elif _WIN32
8080
// TODO: improve Windows version detection
8181
_operatingSystem = "windows";
82-
#elif __apple__
82+
#elif __APPLE__
8383
// TODO: improve MacOS version detection
8484
_operatingSystem = "macos";
8585
#else

0 commit comments

Comments
 (0)
0