svn commit: r551702 - head/databases/postgresql13-server

Piotr Kubaj pkubaj at FreeBSD.org
Thu Oct 8 12:13:11 UTC 2020


Author: pkubaj
Date: Thu Oct  8 12:13:10 2020
New Revision: 551702
URL: https://svnweb.freebsd.org/changeset/ports/551702

Log:
  databases/postgresql13-server: make LLVM option unselectable
  
  This will still keep this port and its slaves buildable on the package builder on powerpc64, and I doubt anyone uses it on mips*.
  
  Reported by:	kib@, adamw@

Modified:
  head/databases/postgresql13-server/Makefile

Modified: head/databases/postgresql13-server/Makefile
==============================================================================
--- head/databases/postgresql13-server/Makefile	Thu Oct  8 11:52:08 2020	(r551701)
+++ head/databases/postgresql13-server/Makefile	Thu Oct  8 12:13:10 2020	(r551702)
@@ -98,9 +98,10 @@ DTRACE_INSTALL_TARGET=	install
 
 .if ${DISTVERSION:C/([0-9]*).*/\1/} >= 11
 OPTIONS_DEFINE+=	LLVM
+OPTIONS_DEFAULT+=	LLVM
 LLVM_DESC=		Build with support for JIT-compiling expressions
-OPTIONS_DEFAULT+=	${OPTIONS_DEFAULT_${CHOSEN_COMPILER_TYPE}}
-OPTIONS_DEFAULT_clang=	LLVM
+OPTIONS_EXCLUDE+=	${OPTIONS_EXCLUDE_powerpc64_${OSREL:R}}
+OPTIONS_EXCLUDE_powerpc64_12=	LLVM
 .endif
 
 .if ${DISTVERSION:C/([0-9]*).*/\1/} < 10


More information about the svn-ports-head mailing list