mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix [-Wundef] warning in PCRE extension
This commit is contained in:
parent
1f72dd89a5
commit
d50b076fa3
2 changed files with 3 additions and 3 deletions
|
@ -20,12 +20,12 @@
|
|||
#endif
|
||||
|
||||
/* Define to any value for valgrind support to find invalid memory reads. */
|
||||
#if HAVE_PCRE_VALGRIND_SUPPORT
|
||||
#ifdef HAVE_PCRE_VALGRIND_SUPPORT
|
||||
#define SUPPORT_VALGRIND 1
|
||||
#endif
|
||||
|
||||
/* Define to any value to enable support for Just-In-Time compiling. */
|
||||
#if HAVE_PCRE_JIT_SUPPORT
|
||||
#ifdef HAVE_PCRE_JIT_SUPPORT
|
||||
#define SUPPORT_JIT
|
||||
#endif
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#ifndef PHP_PCRE_H
|
||||
#define PHP_PCRE_H
|
||||
|
||||
#if HAVE_BUNDLED_PCRE
|
||||
#ifdef HAVE_BUNDLED_PCRE
|
||||
#include "pcre2lib/pcre2.h"
|
||||
#else
|
||||
#include "pcre2.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue