summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2014-11-21 17:22:06 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2014-11-21 17:22:06 +0000
commitda4156e14ed48af5c0d908c5e4bf8d70238d1e0b (patch)
treeb5023c70f2c93e58e53df1a20fe36c17de37b8e5 /lang
parent- Fix error building clamav when old version is installed and openssl from base (diff)
Enforce clang 3.4 in USES=c*11*,objc,gnustep as clang 3.3 has some bugs
Requested by: bapt PR: ports/195122 Differential Revision: https://reviews.freebsd.org/D1181 Exp-run by: self With hat: portmgr
Notes
Notes: svn path=/head/; revision=373004
Diffstat (limited to 'lang')
-rw-r--r--lang/libobjc2/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/libobjc2/Makefile b/lang/libobjc2/Makefile
index 92a230e5969a..d135f51c576b 100644
--- a/lang/libobjc2/Makefile
+++ b/lang/libobjc2/Makefile
@@ -20,7 +20,7 @@ BROKEN_powerpc= Does not compile on powerpc: Unsupported relocation type 10
_CLANG!= if [ -f /usr/bin/clang ] ; then /usr/bin/clang --version | head -1 | \
${SED} -e 's/.*clang version \([0-9]\)\.\([0-9]\).*/\1\2/' ; else ${ECHO} 0 ; fi
-.if ${_CLANG} < 33
+.if ${_CLANG} < 34
BUILD_DEPENDS+= ${LOCALBASE}/bin/clang34:${PORTSDIR}/lang/clang34
CC= ${LOCALBASE}/bin/clang34
CXX= ${LOCALBASE}/bin/clang++34