aboutsummaryrefslogtreecommitdiff
path: root/mail/spamdyke
diff options
context:
space:
mode:
authorWesley Shields <wxs@FreeBSD.org>2012-01-10 02:54:08 +0000
committerWesley Shields <wxs@FreeBSD.org>2012-01-10 02:54:08 +0000
commitef3c306eac7b003c8c2454efce0391a07a226e57 (patch)
tree1df2e705eb0332ac4bd45440f9340a676532bfb6 /mail/spamdyke
parent0a66e6819c7a732c76f5912a8e91363f0b485a77 (diff)
downloadports-ef3c306eac7b003c8c2454efce0391a07a226e57.tar.gz
ports-ef3c306eac7b003c8c2454efce0391a07a226e57.zip
Set IGNORE if building with clang. This port uses nested functions which
are a gcc extension and not supported by clang yet (if ever).
Notes
Notes: svn path=/head/; revision=288858
Diffstat (limited to 'mail/spamdyke')
-rw-r--r--mail/spamdyke/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/mail/spamdyke/Makefile b/mail/spamdyke/Makefile
index df7ebf784108..01e02fd3ef4e 100644
--- a/mail/spamdyke/Makefile
+++ b/mail/spamdyke/Makefile
@@ -29,6 +29,10 @@ OPTIONS= TLS "Enable TLS support" On \
.include <bsd.port.pre.mk>
+.if ${CC:T:Mclang} == "clang"
+IGNORE= uses nested functions, not supported by clang
+.endif
+
.if defined(WITHOUT_TLS)
CONFIGURE_ARGS+= --disable-tls
.else