svn commit: r429447 - head/net/iaxmodem

Dmitry Marakasov amdmi3 at FreeBSD.org
Sun Dec 25 17:33:04 UTC 2016


Author: amdmi3
Date: Sun Dec 25 17:33:03 2016
New Revision: 429447
URL: https://svnweb.freebsd.org/changeset/ports/429447

Log:
  - It fails to build with clang >= 3.6 as well, so always use gcc on i386
  
  Approved by:	portmgr blanket

Modified:
  head/net/iaxmodem/Makefile

Modified: head/net/iaxmodem/Makefile
==============================================================================
--- head/net/iaxmodem/Makefile	Sun Dec 25 17:31:29 2016	(r429446)
+++ head/net/iaxmodem/Makefile	Sun Dec 25 17:33:03 2016	(r429447)
@@ -29,7 +29,7 @@ OPTIONS_DEFINE=	DOCS EXAMPLES
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == i386 && ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} < 36
+.if ${ARCH} == i386 && ${CHOSEN_COMPILER_TYPE} == clang
 # gsm0610_rpe.c:81:10: error: invalid operand for instruction
 USE_GCC=	yes
 .endif


More information about the svn-ports-head mailing list