mirror of
https://github.com/nmap/nmap.git
synced 2026-09-04 01:14:37 +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:
parent
7c7cec7c1d
commit
5e7f606ea5
1 changed files with 5 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue