From 1df2470850e4df9b6a61d9c64a4dad46bbe3b212 Mon Sep 17 00:00:00 2001 From: Ross West Date: Thu, 22 Jan 2009 18:32:41 -0500 Subject: [PATCH] [BUILD] fix Makefile.bsd and Makefile.osx for stream_interface Did a full compile of the 1.3.15.7 - 20081208 snapshot on Freebsd-7.x recently, and noted that there needs to be a quick patch done on the Makefile for bsd machines. This was due to the stream_interface replacing the send data commands in the rewrite Willy did a while ago. Simple fix, and it compiled cleanly otherwise. Thanks for the work Willy! Cheers, Ross. -= --- Makefile.bsd | 2 +- Makefile.osx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.bsd b/Makefile.bsd index d05ad553b..0c385f17e 100644 --- a/Makefile.bsd +++ b/Makefile.bsd @@ -103,7 +103,7 @@ OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocols.o \ src/time.o src/fd.o src/regex.o src/cfgparse.o src/server.o \ src/checks.o src/queue.o src/client.o src/proxy.o src/proto_uxst.o \ src/proto_http.o src/stream_sock.o src/appsession.o src/backend.o \ - src/senddata.o src/dumpstats.o src/proto_tcp.o \ + src/stream_interface.o src/dumpstats.o src/proto_tcp.o \ src/session.o src/hdr_idx.o src/ev_select.o \ src/ev_poll.o src/ev_kqueue.o \ src/acl.o src/memory.o \ diff --git a/Makefile.osx b/Makefile.osx index c6b03c657..64f25e9a2 100644 --- a/Makefile.osx +++ b/Makefile.osx @@ -100,7 +100,7 @@ OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocols.o \ src/time.o src/fd.o src/regex.o src/cfgparse.o src/server.o \ src/checks.o src/queue.o src/client.o src/proxy.o src/proto_uxst.o \ src/proto_http.o src/stream_sock.o src/appsession.o src/backend.o \ - src/senddata.o src/dumpstats.o src/proto_tcp.o \ + src/stream_interface.o src/dumpstats.o src/proto_tcp.o \ src/session.o src/hdr_idx.o src/ev_select.o \ src/ev_poll.o \ src/acl.o src/memory.o \