Date: Sat, 16 Apr 2016 08:02:20 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413418 - head/net/rsync Message-ID: <201604160802.u3G82KQj086929@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Sat Apr 16 08:02:20 2016 New Revision: 413418 URL: https://svnweb.freebsd.org/changeset/ports/413418 Log: Fix building with iconv on 10.1 at least. Sponsored by: Absolight Modified: head/net/rsync/Makefile (contents, props changed) Modified: head/net/rsync/Makefile ============================================================================== --- head/net/rsync/Makefile Sat Apr 16 06:52:14 2016 (r413417) +++ head/net/rsync/Makefile Sat Apr 16 08:02:20 2016 (r413418) @@ -4,7 +4,7 @@ PORTNAME= rsync PORTVERSION= 3.1.2 CATEGORIES= net ipv6 -PORTREVISION= 1 +PORTREVISION= 2 MASTER_SITES= http://rsync.samba.org/ftp/rsync/ \ ftp://ftp.samba.org/pub/rsync/ \ ftp://ftp.sunet.se/pub/unix/admin/rsync/ \ @@ -84,9 +84,7 @@ SSH_CONFIGURE_OFF= --with-rsh=rsh DISTFILES+= ${PORTNAME}-patches-${PORTVERSION}${EXTRACT_SUFX} .endif -.include <bsd.port.pre.mk> - -.if empty(ICONV_LIB) +.if ! ${PORT_OPTIONS:MICONV} CONFIGURE_ARGS+=ac_cv_search_libiconv_open=no .endif @@ -104,4 +102,4 @@ post-install: test: build @(cd ${WRKSRC} && ${MAKE_CMD} check) -.include <bsd.port.post.mk> +.include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604160802.u3G82KQj086929>