From 71c35df2454b1d73f5d762bed56c725578f9f867 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Thu, 9 Oct 2014 22:48:27 +0200 Subject: build: allow disabling libreadline-support This makes nftables a bit more embedded-friendly. Signed-off-by: Steven Barth Signed-off-by: Pablo Neira Ayuso --- include/nftables.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include/nftables.h') diff --git a/include/nftables.h b/include/nftables.h index 3394e324..c3d3dbfb 100644 --- a/include/nftables.h +++ b/include/nftables.h @@ -31,7 +31,14 @@ extern unsigned int debug_level; extern const char *include_paths[INCLUDE_PATHS_MAX]; struct parser_state; +#ifdef HAVE_LIBREADLINE extern int cli_init(struct parser_state *state); +#else +static inline int cli_init(struct parser_state *state) +{ + return -1; +} +#endif extern void cli_exit(void); extern void cli_display(const char *fmt, va_list ap) __fmtstring(1, 0); -- cgit v1.2.3