diff options
author | Sergei Kolobov <sergei@FreeBSD.org> | 2003-10-28 12:47:30 +0000 |
---|---|---|
committer | Sergei Kolobov <sergei@FreeBSD.org> | 2003-10-28 12:47:30 +0000 |
commit | 58dd22594e1ac3be054180b6ff8c1d2c8fccc567 (patch) | |
tree | 775bb075ab646aeb84abbf0efe234998087449e6 /net/haproxy | |
parent | I specifically stated that I did not want to bump portepoch for this port. (diff) |
- Update to 1.1.27:
A problem has been fixed where the HTTP health check code assumed that
the request was still of fixed length, which is obviously wrong since
it became configurable. This could make HTTP health checks fail on
non-default configurations.
- While I'm here:
- similify do-build target: remove use of subshell
- fix portlint warning
PR: 58614
Submmitted by: maintainer
Approved by: krion (implicit)
Notes
Notes:
svn path=/head/; revision=92447
Diffstat (limited to 'net/haproxy')
-rw-r--r-- | net/haproxy/Makefile | 6 | ||||
-rw-r--r-- | net/haproxy/distinfo | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile index 09b5f3f1ace8..56467a503e8f 100644 --- a/net/haproxy/Makefile +++ b/net/haproxy/Makefile @@ -6,7 +6,7 @@ # PORTNAME= haproxy -PORTVERSION= 1.1.26 +PORTVERSION= 1.1.27 CATEGORIES= net www MASTER_SITES= http://w.ods.org/tools/haproxy/src/ \ http://w.ods.org/tools/haproxy/src/old/ @@ -43,9 +43,7 @@ post-patch: @${REINPLACE_CMD} -e 's!localtime(!localtime((time_t *)!' ${WRKSRC}/haproxy.c do-build: - @(cd ${WRKSRC} ;\ - echo "${CC} ${CFLAGS} ${LDFLAGS} ${PORTNAME}.c -o ${PORTNAME}" ;\ - ${CC} ${CFLAGS} ${LDFLAGS} ${PORTNAME}.c -o ${PORTNAME} ) + cd ${WRKSRC} && ${CC} ${CFLAGS} ${LDFLAGS} ${PORTNAME}.c -o ${PORTNAME} do-install: @${INSTALL_PROGRAM} ${WRKSRC}/haproxy ${PREFIX}/sbin diff --git a/net/haproxy/distinfo b/net/haproxy/distinfo index edae2885182f..a4f1ac0197a4 100644 --- a/net/haproxy/distinfo +++ b/net/haproxy/distinfo @@ -1 +1 @@ -MD5 (haproxy-1.1.26.tar.gz) = a38424a7687d6d9471f52d248adeae08 +MD5 (haproxy-1.1.27.tar.gz) = 8379ebfc91a5fbf1f49ca65e36b460af |