1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-28 02:19:04 +00:00

adjust pcre/pcre.h fix so it actually works. needs to be below a header which includes config.h

This commit is contained in:
fyodor
2007-11-28 18:46:17 +00:00
parent e2579c868d
commit 5e7b09d6c4
2 changed files with 8 additions and 3 deletions

View File

@@ -1,4 +1,8 @@
# Nmap Changelog ($Id$); -*-text-*-
o Compatibility with systems that have the pcre.h header file in its
own pcre directory should now be fixed for real. [Fyodor]
4.23RC3
o Zenmap now has a man page! It isn't very long yet, but covers the

View File

@@ -13,15 +13,16 @@ extern "C" {
}
#include <locale.h>
#include "nbase.h"
#include "nmap_error.h"
#ifdef HAVE_PCRE_PCRE_H
# include <pcre/pcre.h>
#else
# include <pcre.h>
#endif
#include "nbase.h"
#include "nmap_error.h"
#include "nse_pcrelib.h"
static void L_lua_error(lua_State *L, const char *message)