- 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:
This commit is contained in:
Dmitry Marakasov 2015-06-30 21:51:56 +00:00
parent f5a57e0292
commit bd3f1e29a9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=391012

View File

@ -12,7 +12,7 @@ COMMENT= Software modem that connects to IAX channel
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.ttyIAX
OPTIONS_DEFINE= DOCS EXAMPLES
.include <bsd.port.options.mk>
.include <bsd.port.pre.mk>
.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 <bsd.port.mk>
.include <bsd.port.post.mk>