mirror of
https://github.com/nmap/nmap.git
synced 2026-09-14 08:26:58 +00:00
Fixed compilation when --without-liblua is specified
This commit is contained in:
parent
fbf03995e0
commit
65309b5c20
2 changed files with 6 additions and 0 deletions
|
|
@ -1,5 +1,8 @@
|
|||
# Nmap Changelog ($Id$); -*-text-*-
|
||||
|
||||
o [Ncat] Fixed compilation when --without-liblua is specified in
|
||||
configure (an #include needed an ifdef guard). [Quentin Glidic]
|
||||
|
||||
o [NSE] Add http-server-header script to grab the Server header as a last-ditch
|
||||
effort to get a software version. This can't be done as a softmatch because
|
||||
of the need to match non-HTTP services that obey some HTTP requests. [Daniel
|
||||
|
|
|
|||
|
|
@ -122,7 +122,10 @@
|
|||
/* $Id$ */
|
||||
|
||||
#include "ncat.h"
|
||||
|
||||
#ifdef HAVE_LUA
|
||||
#include "ncat_lua.h"
|
||||
#endif
|
||||
|
||||
char **cmdline_split(const char *cmdexec);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue