svn commit: r411355 - head/irc/ircd-ratbox

Mark Felder feld at FreeBSD.org
Fri Mar 18 13:57:46 UTC 2016


Author: feld
Date: Fri Mar 18 13:57:45 2016
New Revision: 411355
URL: https://svnweb.freebsd.org/changeset/ports/411355

Log:
  irc/ircd-ratbox: Use GCC for i386
  
  When built with Clang on i386 ratbox segfaults at startup.
  
  PR:		207268

Modified:
  head/irc/ircd-ratbox/Makefile

Modified: head/irc/ircd-ratbox/Makefile
==============================================================================
--- head/irc/ircd-ratbox/Makefile	Fri Mar 18 13:28:04 2016	(r411354)
+++ head/irc/ircd-ratbox/Makefile	Fri Mar 18 13:57:45 2016	(r411355)
@@ -3,7 +3,7 @@
 
 PORTNAME=	ircd-ratbox
 PORTVERSION=	3.0.8
-PORTREVISION=	7
+PORTREVISION=	8
 CATEGORIES=	irc ipv6
 MASTER_SITES=	http://www.ratbox.org/download/				\
 		http://www.ratbox.org/download/old/
@@ -85,6 +85,10 @@ CONFIGURE_ARGS+=	--with-nicklen=${NICKLE
 #-----------------------------------------------------------------------
 .include <bsd.port.options.mk>
 
+.if ${ARCH} == "i386"
+USE_GCC=	yes
+.endif
+
 post-patch:
 .if !defined(WITH_DEBUG)
 	${REINPLACE_CMD} 's|@INSTALL@|@INSTALL@ -s|' ${WRKSRC}/install-mod.sh.in


More information about the svn-ports-head mailing list