git: 9809a41e306c - main - lang/racket: fix build on powerpc64*

Piotr Kubaj pkubaj at FreeBSD.org
Sun Jul 25 19:13:45 UTC 2021


The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=9809a41e306cfbe3e144a1bd818acfa3d5b66896

commit 9809a41e306cfbe3e144a1bd818acfa3d5b66896
Author:     Piotr Kubaj <pkubaj at FreeBSD.org>
AuthorDate: 2021-07-25 19:13:36 +0000
Commit:     Piotr Kubaj <pkubaj at FreeBSD.org>
CommitDate: 2021-07-25 19:13:36 +0000

    lang/racket: fix build on powerpc64*
    
    CS is not supported on powerpc64*.
---
 lang/racket/Makefile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lang/racket/Makefile b/lang/racket/Makefile
index 3b989348a08c..c8d32700dd4a 100644
--- a/lang/racket/Makefile
+++ b/lang/racket/Makefile
@@ -41,8 +41,12 @@ OPTIONS_DEFINE=	DOCS
 OPTIONS_DEFAULT=	CS
 OPTIONS_SUB=	yes
 
+OPTIONS_DEFAULT_powerpc64=	BC
+OPTIONS_DEFAULT_powerpc64le=	BC
 OPTIONS_DEFINE_amd64=	FUTURES JIT
 OPTIONS_DEFINE_i386=	FUTURES JIT
+OPTIONS_EXCLUDE_powerpc64=	CS
+OPTIONS_EXCLUDE_powerpc64le=	CS
 
 OPTIONS_SINGLE=	BACKEND
 OPTIONS_SINGLE_BACKEND=	BC CS


More information about the dev-commits-ports-all mailing list