diff options
author | Dirk Neukirchen <dirkneukirchen@web.de> | 2015-01-29 18:27:13 +0100 |
---|---|---|
committer | Dirk Neukirchen <dirkneukirchen@web.de> | 2015-03-11 17:58:27 +0100 |
commit | 8a307ac786c9e9b1fe4a3ab4eec92f6088d73ac3 (patch) | |
tree | 73282734b6f329aa2f152eecdc5bd5448e29cf4e /mail/bogofilter | |
parent | 58245f257fa6bc36a0887db5f4f381d41dbe52dc (diff) |
bogofilter: remove host includes
- host GSL libs are sometimes found leading to errors
reported by buildbot, replicated locally (Arch Linux)
Error:
configure: GSL_LIBS=-L/usr/lib -lgsl -lgslcblas -lm
leading to
/usr/include/features.h:398:23: fatal error: gnu/stubs.h: No such file or directory
- explicit libdb location to prevent host includes
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
Diffstat (limited to 'mail/bogofilter')
-rw-r--r-- | mail/bogofilter/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/bogofilter/Makefile b/mail/bogofilter/Makefile index de3646b01..d31dfa8c1 100644 --- a/mail/bogofilter/Makefile +++ b/mail/bogofilter/Makefile @@ -35,7 +35,10 @@ define Package/bogofilter/description Bogofilter is a fast Bayesian spam filter endef -CONFIGURE_ARGS += --disable-unicode +CONFIGURE_ARGS += \ + --disable-unicode \ + --with-libdb-prefix=$(STAGING_DIR) \ + --with-included-gsl define Package/bogofilter/install $(INSTALL_DIR) $(1)/etc/ \ |