Added unknown OS clause for the version command output

This commit is contained in:
Federico Hernandez 2009-12-22 01:03:24 +01:00
parent 338e4dfbc7
commit ecb4190e0b
2 changed files with 7 additions and 2 deletions

View file

@ -508,8 +508,10 @@ int handleVersion (std::string &outs)
<< "haiku"
#elif defined (FREEBSD)
<< "freebsd"
#else
#elif defined (LINUX)
<< "linux"
#else
<< "unknown"
#endif
#ifdef HAVE_LIBNCURSES