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.
pull/268/merge
Eric Leblond 13 years ago committed by Victor Julien
parent 5fe9394d07
commit f5ba8eb6db

@ -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

Loading…
Cancel
Save