BUG/MINOR: build: add missing objects in osx and bsd Makefiles
Commits98634f0c7b
,ed66c297c2
andd5f624dde7
updated the main makefile with new objects src/hash.o, src/pattern.o and src/map.o, but missed to update Makefile.bsd and Makefile.osx. This will fix some of the build failures reported by Jorge Severino under OpenBSD.
This commit is contained in:
parent
57d2297473
commit
01193d6efb
|
@ -116,7 +116,8 @@ OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocol.o \
|
|||
src/lb_chash.o src/lb_fwlc.o src/lb_fwrr.o src/lb_map.o src/lb_fas.o \
|
||||
src/ev_poll.o src/ev_kqueue.o src/connection.o \
|
||||
src/arg.o src/acl.o src/memory.o src/freq_ctr.o src/payload.o \
|
||||
src/auth.o src/stick_table.o src/sample.o src/compression.o
|
||||
src/auth.o src/stick_table.o src/sample.o src/compression.o \
|
||||
src/hash.o src/pattern.o src/map.o
|
||||
|
||||
EBTREE_OBJS = $(EBTREE_DIR)/ebtree.o \
|
||||
$(EBTREE_DIR)/eb32tree.o $(EBTREE_DIR)/eb64tree.o \
|
||||
|
|
|
@ -113,7 +113,8 @@ OBJS = src/haproxy.o src/sessionhash.o src/base64.o src/protocol.o \
|
|||
src/lb_chash.o src/lb_fwlc.o src/lb_fwrr.o src/lb_map.o src/lb_fas.o \
|
||||
src/ev_poll.o src/connection.o src/payload.o \
|
||||
src/arg.o src/acl.o src/memory.o src/freq_ctr.o \
|
||||
src/auth.o src/stick_table.o src/sample.o src/compression.o
|
||||
src/auth.o src/stick_table.o src/sample.o src/compression.o \
|
||||
src/hash.o src/pattern.o src/map.o
|
||||
|
||||
EBTREE_OBJS = $(EBTREE_DIR)/ebtree.o \
|
||||
$(EBTREE_DIR)/eb32tree.o $(EBTREE_DIR)/eb64tree.o \
|
||||
|
|
Loading…
Reference in New Issue