From: Eric Leblond Date: Wed, 23 Jan 2013 09:40:40 +0000 (+0100) Subject: suricata: add information to build-info X-Git-Tag: suricata-1.4.1~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f5ba8eb6db8d5e4ed0c2df3189cb19c495f2cfa9;p=thirdparty%2Fsuricata.git suricata: add information to build-info This patch adds information about luajit and jansson to the output of --build-info command. This should fix #696. --- diff --git a/src/suricata.c b/src/suricata.c index 5ef181f9cd..3bd6a24462 100644 --- a/src/suricata.c +++ b/src/suricata.c @@ -620,6 +620,12 @@ void SCPrintBuildInfo(void) { #ifdef HAVE_NSS strlcat(features, "HAVE_NSS ", sizeof(features)); #endif +#ifdef HAVE_LUAJIT + strlcat(features, "HAVE_LUAJIT ", sizeof(features)); +#endif +#ifdef HAVE_LIBJANSSON + strlcat(features, "HAVE_LIBJANSSON ", sizeof(features)); +#endif #ifdef PROFILING strlcat(features, "PROFILING ", sizeof(features)); #endif