From 1074015187d54ced41341aeb7f9e6021580ad1d3 Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Wed, 4 Mar 2020 00:15:30 +0100 Subject: main: add more information to `nft -V`. In addition to the package-version and release-name, output the CLI implementation (if any) and whether mini-gmp was used, e.g.: $ ./src/nft -V nftables v0.9.3 (Topsy) cli: linenoise json: yes minigmp: no libxtables: yes [pablo@netfilter.org: add json and libxtables, use -V ] Signed-off-by: Jeremy Sowden Signed-off-by: Pablo Neira Ayuso --- src/Makefile.am | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am index 9142ab44..3041a933 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -13,6 +13,15 @@ endif if BUILD_XTABLES AM_CPPFLAGS += ${XTABLES_CFLAGS} endif +if BUILD_MINIGMP +AM_CPPFLAGS += -DHAVE_MINIGMP +endif +if BUILD_JSON +AM_CPPFLAGS += -DHAVE_JSON +endif +if BUILD_XTABLES +AM_CPPFLAGS += -DHAVE_XTABLES +endif AM_CFLAGS = -Wall \ -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations \ -- cgit v1.2.3