From nobody Tue Nov 2 17:53:15 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 2CD8B183995B; Tue, 2 Nov 2021 17:53:16 +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 4HkHZ36KKXz3HZl; Tue, 2 Nov 2021 17:53:15 +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 91CCF15BB; Tue, 2 Nov 2021 17:53:15 +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 1A2HrFVh011609; Tue, 2 Nov 2021 17:53:15 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 1A2HrFj9011608; Tue, 2 Nov 2021 17:53:15 GMT (envelope-from git) Date: Tue, 2 Nov 2021 17:53:15 GMT Message-Id: <202111021753.1A2HrFj9011608@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: f3f7446a0053 - main - archivers/c-blosc2: fix build on powerpc64le List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org 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: f3f7446a00538cc58e3342c0def011efd48593d8 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=f3f7446a00538cc58e3342c0def011efd48593d8 commit f3f7446a00538cc58e3342c0def011efd48593d8 Author: Piotr Kubaj AuthorDate: 2021-11-02 17:51:24 +0000 Commit: Piotr Kubaj CommitDate: 2021-11-02 17:51:24 +0000 archivers/c-blosc2: fix build on powerpc64le In file included from /wrkdirs/usr/ports/archivers/c-blosc2/work/c-blosc2-2.0.4/plugins/codecs/ndlz/xxhash.h:2937: /usr/lib/clang/11.0.1/include/altivec.h:55:19: error: unknown type name 'vector' static __inline__ vector bool char __ATTRS_o_ai --- archivers/c-blosc2/files/patch-CMakeLists.txt | 11 +++++++++++ archivers/c-blosc2/files/patch-plugins_codecs_ndlz_xxhash.h | 10 ++++++++++ 2 files changed, 21 insertions(+) diff --git a/archivers/c-blosc2/files/patch-CMakeLists.txt b/archivers/c-blosc2/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..7807ca6dfb7e --- /dev/null +++ b/archivers/c-blosc2/files/patch-CMakeLists.txt @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2021-11-02 17:39:13 UTC ++++ CMakeLists.txt +@@ -303,7 +303,7 @@ elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL armv7l OR + # Unrecognized compiler. Emit a warning message to let the user know hardware-acceleration won't be available. + message(WARNING "Unable to determine which ${CMAKE_SYSTEM_PROCESSOR} hardware features are supported by the C compiler (${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION}).") + endif() +-elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL ppc64le) ++elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL "^(ppc64le|powerpc64le)") + if(CMAKE_C_COMPILER_ID STREQUAL GNU AND CMAKE_C_COMPILER_VERSION VERSION_GREATER 8) + set(COMPILER_SUPPORT_ALTIVEC TRUE) + else() diff --git a/archivers/c-blosc2/files/patch-plugins_codecs_ndlz_xxhash.h b/archivers/c-blosc2/files/patch-plugins_codecs_ndlz_xxhash.h new file mode 100644 index 000000000000..1e375ef9da1e --- /dev/null +++ b/archivers/c-blosc2/files/patch-plugins_codecs_ndlz_xxhash.h @@ -0,0 +1,10 @@ +--- plugins/codecs/ndlz/xxhash.h.orig 2021-10-02 12:17:56 UTC ++++ plugins/codecs/ndlz/xxhash.h +@@ -2934,6 +2934,7 @@ enum XXH_VECTOR_TYPE /* fake enum */ { + # if defined(__GNUC__) && !defined(__APPLE_ALTIVEC__) + # define __APPLE_ALTIVEC__ + # endif ++# define vector __vector + # include + # endif +