| Index: base/sys_info_posix.cc
|
| diff --git a/base/sys_info_posix.cc b/base/sys_info_posix.cc
|
| index 3f487e523deee7703ac0f440aa6592608cbe54c3..1ef56e76d04c2ef40e47233fe77e77a51823a5ee 100644
|
| --- a/base/sys_info_posix.cc
|
| +++ b/base/sys_info_posix.cc
|
| @@ -46,6 +46,7 @@ int64 SysInfo::AmountOfFreeDiskSpace(const FilePath& path) {
|
| return static_cast<int64>(stats.f_bavail) * stats.f_frsize;
|
| }
|
|
|
| +#if !defined(OS_MACOSX)
|
| // static
|
| std::string SysInfo::OperatingSystemName() {
|
| utsname info;
|
| @@ -65,6 +66,7 @@ std::string SysInfo::OperatingSystemVersion() {
|
| }
|
| return std::string(info.release);
|
| }
|
| +#endif
|
|
|
| // static
|
| std::string SysInfo::CPUArchitecture() {
|
|
|