Fix compilation on systems that only have 'libpcre2' installed.

[GB.PCRE]
* BUG: Fix compilation on systems that only have 'libpcre2' installed.
This commit is contained in:
Benoît Minisini 2022-10-01 16:58:28 +02:00
parent fd66b99f32
commit 5498bb00b2

View file

@ -29,7 +29,11 @@
#include <stdarg.h> #include <stdarg.h>
#include <string.h> #include <string.h>
#if PCRE2
#include "regexp2.h"
#else
#include "regexp.h" #include "regexp.h"
#endif
#include "main.h" #include "main.h"