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:
parent
fd66b99f32
commit
5498bb00b2
1 changed files with 4 additions and 0 deletions
|
@ -29,7 +29,11 @@
|
|||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
|
||||
#if PCRE2
|
||||
#include "regexp2.h"
|
||||
#else
|
||||
#include "regexp.h"
|
||||
#endif
|
||||
|
||||
#include "main.h"
|
||||
|
||||
|
|
Loading…
Reference in a new issue