diff options
author | Xin LI <delphij@FreeBSD.org> | 2007-08-12 15:45:08 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2007-08-12 15:45:08 +0000 |
commit | a689aeac0f68d495f379feb81fbf49def8a8ec52 (patch) | |
tree | 971ae81b94ea9f41109c9af6c6aa052dccc097cd /net/haproxy | |
parent | 0cf904365c1d3021a3e1a196ec053771ff26cb9d (diff) | |
download | ports-a689aeac0f68d495f379feb81fbf49def8a8ec52.tar.gz ports-a689aeac0f68d495f379feb81fbf49def8a8ec52.zip |
Notes
Diffstat (limited to 'net/haproxy')
-rw-r--r-- | net/haproxy/Makefile | 3 | ||||
-rw-r--r-- | net/haproxy/distinfo | 6 | ||||
-rw-r--r-- | net/haproxy/files/patch-Makefile.bsd | 21 |
3 files changed, 20 insertions, 10 deletions
diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile index 113004520a49..1647dcb8e7c7 100644 --- a/net/haproxy/Makefile +++ b/net/haproxy/Makefile @@ -6,8 +6,7 @@ # PORTNAME= haproxy -PORTVERSION= 1.2.16 -PORTREVISION= 1 +PORTVERSION= 1.2.17 CATEGORIES= net www MASTER_SITES= http://haproxy.1wt.eu/download/1.2/src/ diff --git a/net/haproxy/distinfo b/net/haproxy/distinfo index 1a06fc6b8296..3e5a549ec504 100644 --- a/net/haproxy/distinfo +++ b/net/haproxy/distinfo @@ -1,3 +1,3 @@ -MD5 (haproxy-1.2.16.tar.gz) = f72c44bcddf868edf4000503be09a12d -SHA256 (haproxy-1.2.16.tar.gz) = c8635aaf761f3bb74676d6cbc1ebb415cdcebebcdb46261a737a7d69c4251f2f -SIZE (haproxy-1.2.16.tar.gz) = 197867 +MD5 (haproxy-1.2.17.tar.gz) = 45a66691aa3b22996862e3e5bac4289c +SHA256 (haproxy-1.2.17.tar.gz) = 80971ad014444e7d7ba8d6724e2a535c81b8c0e989dc418496def5873345800d +SIZE (haproxy-1.2.17.tar.gz) = 206219 diff --git a/net/haproxy/files/patch-Makefile.bsd b/net/haproxy/files/patch-Makefile.bsd index 4f27d99fbe7e..eaeaca8a9e43 100644 --- a/net/haproxy/files/patch-Makefile.bsd +++ b/net/haproxy/files/patch-Makefile.bsd @@ -1,5 +1,5 @@ ---- Makefile.bsd.orig Sun May 21 21:32:29 2006 -+++ Makefile.bsd Sun Sep 24 10:06:30 2006 +--- ./Makefile.bsd.orig 2007-03-18 05:04:39.000000000 +0800 ++++ ./Makefile.bsd 2007-07-24 20:38:01.803049803 +0800 @@ -5,22 +5,22 @@ TARGET = openbsd @@ -55,20 +55,31 @@ # global options TARGET_OPTS=$(COPTS.$(TARGET)) -@@ -75,13 +75,13 @@ +@@ -75,14 +75,14 @@ COPTS=-I. $(ADDINC) $(CPU_OPTS) $(TARGET_OPTS) $(REGEX_OPTS) $(SMALL_OPTS) $(DEFINE) LIBS=$(LIBS.$(TARGET)) $(LIBS.$(REGEX)) $(ADDLIB) -CFLAGS = -Wall $(COPTS) $(DEBUG) -LDFLAGS = -g +CFLAGS+= -Wall $(COPTS) -+LDFLAGS+= #-g /lib/crt0.o -lc ++LDFLAGS+= #-g /lib/crt0.o -lc all: haproxy - haproxy: src/list.o src/chtbl.o src/hashpjw.o haproxy.o src/base64.o src/uri_auth.o + haproxy: src/list.o src/chtbl.o src/hashpjw.o haproxy.o src/base64.o \ + src/uri_auth.o src/rbtree.o - $(LD) $(LDFLAGS) -o $@ $> $(LIBS) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $> $(LIBS) src/base64.o: src/base64.c $(CC) $(CFLAGS) -c -o $@ $< +@@ -99,6 +99,9 @@ + src/hashpjw.o: src/hashpjw.c + $(CC) $(CFLAGS) -c -o $@ $< + ++src/rbtree.o: src/rbtree.c ++ $(CC) $(CFLAGS) -c -o $@ $< ++ + haproxy.o: haproxy.c + $(CC) $(CFLAGS) -c -o $@ $< + |