kOGQ2jrMC77eLRP8iCQslIFEyn6UNmZJ+TyA/W5ldQM6D3d FC4V7zPZ9nr//C0Rcyy8FmvsfCPnLPrieqL7FItLqde9ubc4sWue7pmPYaUN1g== ARC-Authentication-Results: i=1; mx1.freebsd.org; none ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=freebsd.org; s=dkim; t=1716224151; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=wDlt+z/HVoK+BfFZg3wvQmBjsZMiywfH/XK5Agii71U=; b=GB5z1ZZ6+fo9q+xKW61UlVTAZiyLraal7fzo/kGJK3UD1KhtQ8i++ey24dIoSgeCe+LRM2 KtQNAyEvGKWqe0NDtVLs+6n4mMyoMy/v5NgG5JxPlL0KS8/hYStAKSNaV2mE84xWg3+q2Q Lk9CrkHGhuCmUulR/76BD7aDkQT7FiFRRsTzuutRt5VoOC7ss5El9l6sfgTr3YRwY4Sb9n q+IIoGVffFhUfvRZ1DluJOjIjJEY3M83eVwZQmiyuFeF9SS04SXMEph2rObTwStdjdevAc i4ipgmsbwXRVuw60dU/FnxkoHqMseJCi8upa8H/EYuYMcif4fP3INDmk495HwA== 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 4VjkGb1Cv5zm23; Mon, 20 May 2024 16:55:51 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.17.1/8.17.1) with ESMTP id 44KGtpAq084603; Mon, 20 May 2024 16:55:51 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.17.1/8.17.1/Submit) id 44KGtpYt084600; Mon, 20 May 2024 16:55:51 GMT (envelope-from git) Date: Mon, 20 May 2024 16:55:51 GMT Message-Id: <202405201655.44KGtpYt084600@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Yuri Victorovich Subject: git: 2e320ea4bc9e - main - math/kamis: Broken where OpenMP isn't available List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-ports-all@freebsd.org Sender: owner-dev-commits-ports-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: yuri X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 2e320ea4bc9e19b782f728680e9560642f5bca09 Auto-Submitted: auto-generated The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=2e320ea4bc9e19b782f728680e9560642f5bca09 commit 2e320ea4bc9e19b782f728680e9560642f5bca09 Author: Yuri Victorovich AuthorDate: 2024-05-20 15:22:04 +0000 Commit: Yuri Victorovich CommitDate: 2024-05-20 16:55:48 +0000 math/kamis: Broken where OpenMP isn't available Reported by: fallout --- math/kamis/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/math/kamis/Makefile b/math/kamis/Makefile index 3e12d34d0b9a..d33923150cca 100644 --- a/math/kamis/Makefile +++ b/math/kamis/Makefile @@ -15,9 +15,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake USE_LDCONFIG= yes -#.if !exists(/usr/include/omp.h) -#USES+= compiler:gcc-c++11-lib -#.endif +.if !exists(/usr/include/omp.h) +BROKEN= requires OpenMP support that is missing on this architecture +.endif USE_GITHUB= yes GH_ACCOUNT= KarlsruheMIS