From 22443de7891ca54cc199c30bdaf2725395062462 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 18 May 2011 13:15:46 -0700 Subject: [PATCH] test: Link to compat files when building program during "make test" The compilation of the smtp-dummy program would fail if a build was attempted on a system without getline. Fix this by simply including the existing notmuch_compat_srcs variable when constructing the list of source files for compiling smtp-dummy. --- test/Makefile.local | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/Makefile.local b/test/Makefile.local index 7b602bcf..8eb04330 100644 --- a/test/Makefile.local +++ b/test/Makefile.local @@ -2,7 +2,13 @@ dir := test -$(dir)/smtp-dummy: $(dir)/smtp-dummy.c +smtp_dummy_srcs = \ + $(notmuch_compat_srcs) \ + $(dir)/smtp-dummy.c + +smtp_dummy_modules = $(smtp_dummy_srcs:.c=.o) + +$(dir)/smtp-dummy: $(smtp_dummy_modules) $(call quiet,CC) $^ -o $@ .PHONY: test check -- 2.43.0