From f2d9d84e9676b18218e28362e865ef567c7ea6d5 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Fri, 26 Feb 2010 21:36:32 +0100 Subject: [PATCH] [BUILD] fix BSD and OSX makefiles for missing files Jeff Buchbinder reported that OpenBSD build broke because recently added files were not ported to BSD and OSX makefiles. --- Makefile.bsd | 3 ++- Makefile.osx | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.bsd b/Makefile.bsd index 015a3651b5..191be4d258 100644 --- a/Makefile.bsd +++ b/Makefile.bsd @@ -110,7 +110,8 @@ OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocols.o \ src/session.o src/hdr_idx.o src/ev_select.o src/signal.o \ src/lb_chash.o src/lb_fwlc.o src/lb_fwrr.o src/lb_map.o \ src/ev_poll.o src/ev_kqueue.o \ - src/acl.o src/memory.o src/freq_ctr.o + src/acl.o src/memory.o src/freq_ctr.o \ + src/auth.o src/stick_table.o src/pattern.o EBTREE_OBJS = $(EBTREE_DIR)/ebtree.o \ $(EBTREE_DIR)/eb32tree.o $(EBTREE_DIR)/eb64tree.o \ diff --git a/Makefile.osx b/Makefile.osx index 5fa0da0250..678a7fb8f5 100644 --- a/Makefile.osx +++ b/Makefile.osx @@ -107,7 +107,8 @@ OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocols.o \ src/session.o src/hdr_idx.o src/ev_select.o src/signal.o \ src/lb_chash.o src/lb_fwlc.o src/lb_fwrr.o src/lb_map.o \ src/ev_poll.o \ - src/acl.o src/memory.o src/freq_ctr.o + src/acl.o src/memory.o src/freq_ctr.o \ + src/auth.o src/stick_table.o src/pattern.o EBTREE_OBJS = $(EBTREE_DIR)/ebtree.o \ $(EBTREE_DIR)/eb32tree.o $(EBTREE_DIR)/eb64tree.o \