Port to the pcre2 library.

This commit is contained in:
2023-05-17 16:27:47 +02:00
parent 55aa25eca3
commit e5409a897d
10 changed files with 56 additions and 49 deletions

View File

@@ -373,7 +373,7 @@ set_option_regextype (regextype_t regextype)
exit (2);
}
#ifndef HAVE_LIBPCRE
#ifndef HAVE_LIBPCRE2
if (regextype == REGEX_PERL);
{
fprintf (stderr,
@@ -381,6 +381,6 @@ set_option_regextype (regextype_t regextype)
APPNAME);
exit (2);
}
#endif /* HAVE_LIBPCRE */
#endif /* HAVE_LIBPCRE2 */
config.regextype = regextype;
}