diff options
author | eik <eik@FreeBSD.org> | 2004-04-29 14:36:39 +0000 |
---|---|---|
committer | eik <eik@FreeBSD.org> | 2004-04-29 14:36:39 +0000 |
commit | be89704111cec33853a15ea5483fc2519fc2c634 (patch) | |
tree | 5e8aebc608861d91ac25db90d162d2ad0342d0af /net/rsync/Makefile | |
parent | 44e843b7d530ddaf309a10e31f0638cb4fe166f7 (diff) | |
download | FreeBSD-ports-be89704111cec33853a15ea5483fc2519fc2c634.zip FreeBSD-ports-be89704111cec33853a15ea5483fc2519fc2c634.tar.gz |
Fixed the use of an uninitialized variable in map_uid() and map_gid()
<http://lists.samba.org/archive/rsync/2004-April/009334.html>
Added timelimit patches by default (--stop-at and --time-limit, see rsync -h)
Diffstat (limited to 'net/rsync/Makefile')
-rw-r--r-- | net/rsync/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile index f2f558a..eedb340 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -8,6 +8,7 @@ PORTNAME= rsync PORTVERSION= 2.6.1 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= http://rsync.samba.org/ftp/%SUBDIR%/ \ ftp://rsync.samba.org/pub/%SUBDIR%/ \ @@ -42,6 +43,10 @@ CONFIGURE_ARGS+= --with-included-popt PORTDOCS= NEWS README csprotocol.txt tech_report.tex .endif +.if !defined(WITHOUT_TIMELIMIT) +EXTRA_PATCHES+= ${WRKSRC}/patches/time-limit.diff +.endif + .include <bsd.port.pre.mk> SED_SCRIPT+= -e 's,%%PREFIX%%,${PREFIX},g' \ |