diff options
-rw-r--r-- | net/rsync/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile index b373b1feb482..2802acb92327 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -8,7 +8,7 @@ PORTNAME= rsync PORTVERSION= 2.5.5 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= ftp://samba.anu.edu.au/pub/rsync/ \ ftp://sunsite.auc.dk/pub/unix/rsync/ \ @@ -19,6 +19,11 @@ MAINTAINER= obraun@informatik.unibw-muenchen.de GNU_CONFIGURE= yes +OPTIMIZATION!= ${ECHO} "${CFLAGS}" | grep '\-O[2-6]' || true +.if empty(OPTIMIZATION) +CFLAGS+= -O2 +.endif + .include <bsd.port.pre.mk> .if ${OSVERSION} >= 400016 |