From 2b1943a95323e710218a37b3a51dd8cc5961f637 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Wed, 11 Apr 2007 06:29:17 +0200 Subject: [BUILD] fix build of rbtree on BSD Jean-Yves Landry reported a build problem on OpenBSD since the introduction of rbtree. An entry was missing in Makefile.bsd. --- Makefile.bsd | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Makefile.bsd b/Makefile.bsd index 71cb9a8..57d8d64 100644 --- a/Makefile.bsd +++ b/Makefile.bsd @@ -84,6 +84,9 @@ 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) +src/rbtree.o: src/rbtree.c + $(CC) $(CFLAGS) -c -o $@ $< + src/base64.o: src/base64.c $(CC) $(CFLAGS) -c -o $@ $< -- 1.5.2.5