Set IGNORE if building with clang. This port uses nested functions which

are a gcc extension and not supported by clang yet (if ever).
This commit is contained in:
Wesley Shields 2012-01-10 02:54:08 +00:00
parent 0a66e6819c
commit ef3c306eac
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=288858

View file

@ -29,6 +29,10 @@ OPTIONS= TLS "Enable TLS support" On \
.include <bsd.port.pre.mk> .include <bsd.port.pre.mk>
.if ${CC:T:Mclang} == "clang"
IGNORE= uses nested functions, not supported by clang
.endif
.if defined(WITHOUT_TLS) .if defined(WITHOUT_TLS)
CONFIGURE_ARGS+= --disable-tls CONFIGURE_ARGS+= --disable-tls
.else .else