Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Dec 2016 17:33:03 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r429447 - head/net/iaxmodem
Message-ID:  <201612251733.uBPHX334027740@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612251733.uBPHX334027740>