svn commit: r366689 - head/irc/undernet-ircu

John Marino marino at FreeBSD.org
Sat Aug 30 22:28:33 UTC 2014


Author: marino
Date: Sat Aug 30 22:28:33 2014
New Revision: 366689
URL: http://svnweb.freebsd.org/changeset/ports/366689
QAT: https://qat.redports.org/buildarchive/r366689/

Log:
  irc/undernet-ircu: Unbreak build on FreeBSD 8.4
  
  Undernet-ircu fails to build on FreeBSD 8.4 when --enable-profile
  (the default) is included in configure arguments.  To restore building
  on FreeBSD 8.4, remove this as an option for that release.

Modified:
  head/irc/undernet-ircu/Makefile

Modified: head/irc/undernet-ircu/Makefile
==============================================================================
--- head/irc/undernet-ircu/Makefile	Sat Aug 30 22:28:09 2014	(r366688)
+++ head/irc/undernet-ircu/Makefile	Sat Aug 30 22:28:33 2014	(r366689)
@@ -59,6 +59,11 @@ CONFIGURE_ARGS+=	--enable-profile
 
 .include <bsd.port.options.mk>
 
+# always disable profile support on 8.x
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000
+CONFIGURE_ARGS:=	${CONFIGURE_ARGS:N--enable-profile}
+.endif
+
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/ircd/ircd ${STAGEDIR}${PREFIX}/sbin
 	${INSTALL_PROGRAM} ${WRKSRC}/ircd/convert-conf \


More information about the svn-ports-all mailing list