1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-16 11:29:02 +00:00

better detection and support for systems which use pcre/pcre.h rather than just pcre.h. Bug reported by Lionel Cons

This commit is contained in:
fyodor
2007-11-27 19:33:08 +00:00
parent 7c7cec7c1d
commit 5e7f606ea5

View File

@@ -13,7 +13,11 @@ extern "C" {
}
#include <locale.h>
#include <pcre.h>
#ifdef HAVE_PCRE_PCRE_H
# include <pcre/pcre.h>
#else
# include <pcre.h>
#endif
#include "nbase.h"
#include "nmap_error.h"