From owner-svn-ports-all@freebsd.org Tue Jun 30 21:51:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C199499152B; Tue, 30 Jun 2015 21:51:56 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B25391A5C; Tue, 30 Jun 2015 21:51:56 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5ULpu0r054725; Tue, 30 Jun 2015 21:51:56 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5ULpuDH054724; Tue, 30 Jun 2015 21:51:56 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201506302151.t5ULpuDH054724@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 30 Jun 2015 21:51:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391012 - head/net/iaxmodem X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Jun 2015 21:51:56 -0000 Author: amdmi3 Date: Tue Jun 30 21:51:56 2015 New Revision: 391012 URL: https://svnweb.freebsd.org/changeset/ports/391012 Log: - Fix build on 10.x i386: gsm0610_rpe.c:81:10: error: invalid operand for instruction " movq %[gsm_H],%%mm1;\n" ^ Submitted by: pkg-fallout Approved by: portmgr blanket Differential Revision: Modified: head/net/iaxmodem/Makefile Modified: head/net/iaxmodem/Makefile ============================================================================== --- head/net/iaxmodem/Makefile Tue Jun 30 21:49:29 2015 (r391011) +++ head/net/iaxmodem/Makefile Tue Jun 30 21:51:56 2015 (r391012) @@ -12,7 +12,7 @@ COMMENT= Software modem that connects to LIB_DEPENDS= libtiff.so:${PORTSDIR}/graphics/tiff -USES= perl5 +USES= compiler:features perl5 USE_PERL5= patch HAS_CONFIGURE= yes USE_RC_SUBR= ${PORTNAME} @@ -27,7 +27,12 @@ PORTEXAMPLES= config.ttyIAX iaxmodem-cfg OPTIONS_DEFINE= DOCS EXAMPLES -.include +.include + +.if ${ARCH} == i386 && ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} < 36 +# gsm0610_rpe.c:81:10: error: invalid operand for instruction +USE_GCC= yes +.endif post-patch: @${PERL} -0pi.bak -e "s|for ac_header in tgmath\.h.*?done||s" \ @@ -43,4 +48,4 @@ do-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} -.include +.include