openbsd-ports/www/chromium/patches/patch-base_sys_info_openbsd_cc
robert a52e8efd8d - update to 26.0.1410.43
- switch chromium to use clang/llvm instead of gcc
- switch back to the internal libvpx because it's an unreleased version
  at this point
- re-enable SSE2 support
2013-04-03 08:19:10 +00:00

27 lines
827 B
Plaintext

$OpenBSD: patch-base_sys_info_openbsd_cc,v 1.5 2013/04/03 08:19:10 robert Exp $
--- base/sys_info_openbsd.cc.orig.port Fri Mar 22 02:13:44 2013
+++ base/sys_info_openbsd.cc Tue Apr 2 21:05:17 2013
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -43,6 +43,16 @@ size_t SysInfo::MaxSharedMemorySize() {
return 0;
}
return limit;
+}
+
+// static
+std::string SysInfo::CPUModelName() {
+ int mib[] = { CTL_HW, HW_MODEL };
+ char name[256];
+ size_t len = arraysize(name);
+ if (sysctl(mib, arraysize(mib), &name, &len, NULL, 0) == 0)
+ return name;
+ return std::string();
}
} // namespace base