svn commit: r522138 - branches/2020Q1/mail/rspamd-devel
Piotr Kubaj
pkubaj at FreeBSD.org
Sun Jan 5 10:59:20 UTC 2020
Author: pkubaj
Date: Sun Jan 5 10:59:19 2020
New Revision: 522138
URL: https://svnweb.freebsd.org/changeset/ports/522138
Log:
MFH: r522137
mail/rspamd-devel: use luajit only on amd64, armv7, i386 and powerpc to fix build on other architectures
It's possible that there are other architectures that luajit works on, but I couldn't test it.
PR: 243059
Approved by: vsevolod (maintainer)
Approved by: portmgr (fix build blanket)
Modified:
branches/2020Q1/mail/rspamd-devel/Makefile
Directory Properties:
branches/2020Q1/ (props changed)
Modified: branches/2020Q1/mail/rspamd-devel/Makefile
==============================================================================
--- branches/2020Q1/mail/rspamd-devel/Makefile Sun Jan 5 10:58:30 2020 (r522137)
+++ branches/2020Q1/mail/rspamd-devel/Makefile Sun Jan 5 10:59:19 2020 (r522138)
@@ -12,9 +12,13 @@ LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.md
LIB_DEPENDS= libpcre.so:devel/pcre \
- libluajit-5.1.so:lang/luajit \
libicui18n.so:devel/icu \
- libsodium.so:security/libsodium
+ libsodium.so:security/libsodium \
+ ${LIB_DEPENDS_${ARCH}}
+LIB_DEPENDS_amd64= libluajit-5.1.so:lang/luajit
+LIB_DEPENDS_armv7= libluajit-5.1.so:lang/luajit
+LIB_DEPENDS_i386= libluajit-5.1.so:lang/luajit
+LIB_DEPENDS_powerpc= libluajit-5.1.so:lang/luajit
BUILD_DEPENDS= ragel:devel/ragel
RUN_DEPENDS= ca_root_nss>=3.*:security/ca_root_nss
More information about the svn-ports-all
mailing list