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"