diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-10-08 12:13:10 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-10-08 12:13:10 +0000 |
commit | 6200fdde5c507c04ae2b127a42e07f04ebf84999 (patch) | |
tree | 113fa65b059351659dbf749f70f09932a4731aaa /databases/postgresql13-server | |
parent | textproc/libcrm114: fix build with -fno-common and deprecate port (diff) |
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@
Notes
Notes:
svn path=/head/; revision=551702
Diffstat (limited to 'databases/postgresql13-server')
-rw-r--r-- | databases/postgresql13-server/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/databases/postgresql13-server/Makefile b/databases/postgresql13-server/Makefile index 3651271e429d..22a9abb2cb9c 100644 --- a/databases/postgresql13-server/Makefile +++ b/databases/postgresql13-server/Makefile @@ -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 |