svn commit: r552850 - head/security/highwayhash/files

Piotr Kubaj pkubaj at FreeBSD.org
Wed Oct 21 01:19:22 UTC 2020


Author: pkubaj
Date: Wed Oct 21 01:19:21 2020
New Revision: 552850
URL: https://svnweb.freebsd.org/changeset/ports/552850

Log:
  security/highwayhash: commit forgotten patch to fix powerpc64*
  
  MFH:		2020Q4 (fix build blanket)

Added:
  head/security/highwayhash/files/patch-highwayhash_arch__specific.cc   (contents, props changed)

Added: head/security/highwayhash/files/patch-highwayhash_arch__specific.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/highwayhash/files/patch-highwayhash_arch__specific.cc	Wed Oct 21 01:19:21 2020	(r552850)
@@ -0,0 +1,11 @@
+--- highwayhash/arch_specific.cc.orig	2020-10-10 11:16:48 UTC
++++ highwayhash/arch_specific.cc
+@@ -150,7 +150,7 @@ double DetectNominalClockRate() {
+   }
+  #elif __FreeBSD__
+   size_t length = sizeof(freq);
+-  sysctlbyname("dev.cpu.0.freq"), &freq, &length, NULL, 0);
++  sysctlbyname("dev.cpu.0.freq", &freq, &length, NULL, 0);
+   freq *= 1E6;
+   return freq;
+ #endif


More information about the svn-ports-all mailing list