diff options
author | sergei <sergei@FreeBSD.org> | 2003-10-28 20:47:30 +0800 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2003-10-28 20:47:30 +0800 |
commit | fb26cc874cec07a6c88fa587fd43b7073e079f3c (patch) | |
tree | b4920d45d9daf314d9f0e16daad26961af1b311a | |
parent | 549f70e06d75fb4db983137fd68c766a2a5634dd (diff) | |
download | freebsd-ports-gnome-fb26cc874cec07a6c88fa587fd43b7073e079f3c.tar.gz freebsd-ports-gnome-fb26cc874cec07a6c88fa587fd43b7073e079f3c.tar.zst freebsd-ports-gnome-fb26cc874cec07a6c88fa587fd43b7073e079f3c.zip |
- 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)
-rw-r--r-- | net/haproxy-devel/Makefile | 6 | ||||
-rw-r--r-- | net/haproxy-devel/distinfo | 2 | ||||
-rw-r--r-- | net/haproxy/Makefile | 6 | ||||
-rw-r--r-- | net/haproxy/distinfo | 2 |
4 files changed, 6 insertions, 10 deletions
diff --git a/net/haproxy-devel/Makefile b/net/haproxy-devel/Makefile index 09b5f3f1ace8..56467a503e8f 100644 --- a/net/haproxy-devel/Makefile +++ b/net/haproxy-devel/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-devel/distinfo b/net/haproxy-devel/distinfo index edae2885182f..a4f1ac0197a4 100644 --- a/net/haproxy-devel/distinfo +++ b/net/haproxy-devel/distinfo @@ -1 +1 @@ -MD5 (haproxy-1.1.26.tar.gz) = a38424a7687d6d9471f52d248adeae08 +MD5 (haproxy-1.1.27.tar.gz) = 8379ebfc91a5fbf1f49ca65e36b460af 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 |