diff options
author | John Marino <marino@FreeBSD.org> | 2014-08-30 22:28:33 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-08-30 22:28:33 +0000 |
commit | 8f261232f9e227f774c81c0fc990e6e3edf1b2c9 (patch) | |
tree | d19f1fc0e39fd0962f644d60bd250043c8268dc5 | |
parent | 8ad190e4d395cd8517c0a4341e5fbbda36e9f248 (diff) | |
download | freebsd-ports-8f261232f9e227f774c81c0fc990e6e3edf1b2c9.zip |
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.
-rw-r--r-- | irc/undernet-ircu/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/irc/undernet-ircu/Makefile b/irc/undernet-ircu/Makefile index 608294a8272b..40aca51d365d 100644 --- a/irc/undernet-ircu/Makefile +++ b/irc/undernet-ircu/Makefile @@ -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 \ |