From 30187a839643337415ce78efec566aeff80f5a60 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 18 Jun 2013 11:47:17 +0200 Subject: [PATCH] s3-autoconf: Add missing libtevent dependency for dbwrap_torture. Signed-off-by: Michael Adam Signed-off-by: Karolin Seeger The last 3 patches are part of a fix for bug #9881 - Samba doesn't check for system libtevent. --- source3/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/Makefile.in b/source3/Makefile.in index 68bade162ba..9e8e03d57a7 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -3283,13 +3283,13 @@ bin/dbwrap_tool@EXEEXT@: $(DBWRAP_TOOL_OBJ) $(LIBTALLOC) $(LIBTDB) $(LIBTEVENT) install-dbwrap_tool:: bin/dbwrap_tool@EXEEXT@ @$(SHELL) script/installbin.sh $(INSTALLPERMS_BIN) $(DESTDIR) $(prefix) $(BINDIR) $< -bin/dbwrap_torture@EXEEXT@: $(DBWRAP_TORTURE_OBJ) $(LIBTALLOC) $(LIBTDB) +bin/dbwrap_torture@EXEEXT@: $(DBWRAP_TORTURE_OBJ) $(LIBTALLOC) $(LIBTDB) $(LIBTEVENT) @echo "Linking $@" @$(CC) -o $@ $(DBWRAP_TORTURE_OBJ)\ $(LDFLAGS) $(DYNEXP) $(LIBS) \ $(LDAP_LIBS) \ $(POPT_LIBS) \ - $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) + $(LIBTALLOC_LIBS) $(LIBTDB_LIBS) $(LIBTEVENT_LIBS) install-dbwrap_torture:: bin/dbwrap_torture@EXEEXT@ @$(SHELL) script/installbin.sh $(INSTALLPERMS_BIN) $(DESTDIR) $(prefix) $(BINDIR) $< -- 2.11.4.GIT