From owner-dev-commits-ports-all@freebsd.org Thu Jul 15 10:37:33 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6A1FF66425B; Thu, 15 Jul 2021 10:37:33 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GQW652BN3z4d1s; Thu, 15 Jul 2021 10:37:33 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2C0FB27C4E; Thu, 15 Jul 2021 10:37:33 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 16FAbXVl080753; Thu, 15 Jul 2021 10:37:33 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16FAbXGc080752; Thu, 15 Jul 2021 10:37:33 GMT (envelope-from git) Date: Thu, 15 Jul 2021 10:37:33 GMT Message-Id: <202107151037.16FAbXGc080752@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Piotr Kubaj Subject: git: b91d1bd03771 - main - security/zeek: fix build on powerpc64* MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: pkubaj X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: b91d1bd03771d45095637061c58baba5e62fc991 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jul 2021 10:37:33 -0000 The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=b91d1bd03771d45095637061c58baba5e62fc991 commit b91d1bd03771d45095637061c58baba5e62fc991 Author: Piotr Kubaj AuthorDate: 2021-07-15 10:37:24 +0000 Commit: Piotr Kubaj CommitDate: 2021-07-15 10:37:24 +0000 security/zeek: fix build on powerpc64* In file included from /wrkdirs/usr/ports/security/zeek/work/zeek-4.0.3/auxil/highwayhash/highwayhash/arch_specific.cc:27: /usr/include/sys/sysctl.h:1185:25: error: unknown type name 'u_int' int sysctl(const int *, u_int, void *, size_t *, const void *, size_t); --- .../patch-auxil_highwayhash_highwayhash_arch__specific.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/security/zeek/files/patch-auxil_highwayhash_highwayhash_arch__specific.cc b/security/zeek/files/patch-auxil_highwayhash_highwayhash_arch__specific.cc new file mode 100644 index 000000000000..ae6bae49a2fe --- /dev/null +++ b/security/zeek/files/patch-auxil_highwayhash_highwayhash_arch__specific.cc @@ -0,0 +1,12 @@ +--- auxil/highwayhash/highwayhash/arch_specific.cc.orig 2021-07-15 09:38:08 UTC ++++ auxil/highwayhash/highwayhash/arch_specific.cc +@@ -24,8 +24,8 @@ + #if __GLIBC__ + #include // __ppc_get_timebase_freq + #elif __FreeBSD__ +-#include + #include ++#include + #endif + #endif +