Portability
- Added support for GNU/Hurd and GNU/kFreeBSD systems (thanks to Jakub Wilk).
This commit is contained in:
@@ -124,6 +124,10 @@ const std::string DOM::get (const std::string& name)
|
||||
return "NetBSD";
|
||||
#elif defined (LINUX)
|
||||
return "Linux";
|
||||
#elif defined (KFREEBSD)
|
||||
return "GNU/kFreeBSD";
|
||||
#elif defined (GNUHURD)
|
||||
return "GNU/Hurd";
|
||||
#else
|
||||
return STRING_DOM_UNKNOWN;
|
||||
#endif
|
||||
|
||||
@@ -87,6 +87,10 @@ int CmdDiagnostics::execute (std::string& output)
|
||||
"NetBSD"
|
||||
#elif defined (LINUX)
|
||||
"Linux"
|
||||
#elif defined (KFREEBSD)
|
||||
"GNU/kFreeBSD"
|
||||
#elif defined (GNUHURD)
|
||||
"GNU/Hurd"
|
||||
#else
|
||||
STRING_CMD_DIAG_UNKNOWN
|
||||
#endif
|
||||
|
||||
@@ -88,6 +88,10 @@ int CmdVersion::execute (std::string& output)
|
||||
<< "netbsd"
|
||||
#elif defined (LINUX)
|
||||
<< "linux"
|
||||
#elif defined (KFREEBSD)
|
||||
"gnu-kfreebsd"
|
||||
#elif defined (GNUHURD)
|
||||
<< "gnu-hurd"
|
||||
#else
|
||||
<< STRING_CMD_VERSION_UNKNOWN
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user